Ok guys, I got it working.
To get both the latest Posts and latest Threads to work together on the same forumhome page:
Go to Plugin Manager, and in the "Product : Latest X Threads on Forum Home" product, select the
"Main Code" and edit.
Find all instances of $forumids
Replace with $forumids2
THEN ...
Find:
Code:
eval('$latest = "' . fetch_template('forumhome_latest_thread') . '";');
Replace with:
Code:
eval('$latestthreads = "' . fetch_template('forumhome_latest_thread') . '";');
Use $latestthreads in your forumhome template.
Both plugins were using the same variables thus causing a conflict!