Actually, I've managed to solve the problem myself.
For anyone else with a similar problem, use the SAME epdev module and configure 2 different news sources. That's what's fixed mine.
Exactly. This is preferred.
For anyone who has this problem in the future:
For anyone who still wants to use two different installs on the same page, simply remove the include_once("/abs/path/to/news.php"); from the generated code.
Still, the preferred method would be to use the same news object, like:
Code:
<?php include_once("/abs/path/to/news.php");
$forum_obj = new EP_Dev_Forum_News();
$forum_obj->display_News("", "1", "0", "0"); ?>
for the first one, and then just:
Code:
<?php $forum_obj->display_News("", "1", "1", "0"); ?>
For the second one (further down the page as far as source code goes).