Quote:
Originally Posted by Paul M
change the search to look for that comment.
|
So if I understand this correctly, if we want it to show up from our forumhome template, then we would change this line of code:
HTML Code:
$vbulletin->templatecache['navbar'] = str_replace($search_text,$search_text.$unread,$vbulletin->templatecache['navbar']);
to this?
HTML Code:
$vbulletin->templatecache['forumhome'] = str_replace($search_text,$search_text.$unread,$vbulletin->templatecache['forumhome']);
...and then add "<!-- unread posts here -->" in the forumhome template where we want it to show up? Is that correct Paul?