Quote:
Originally Posted by trackpads
Ran into a problem, it wont display for some reason. I am using the Everywhere sidebar mod, do you think that is it?
It shows up like the other blocks in the admincp, just not on the forumhome.
Thanks again,
-Jason
|
Ya if you are using everywhere sidebar mod then it won't display.
I quickly gone through everywhere sidebar code and found a way for this problem.
Open Plugin "
sidebar_global"
Find: (3 times)
Code:
$fullblockid = str_replace('sgdiscussions', 'sgnewdiscussions', $fullblockid);
Add After it:
PHP Code:
$cccache = unserialize($block['configcache']);
if (strpos($cccache['html_template'], 'block_activitystream') !== false)
{
$fullblockid = 'block_activity';
}