View Single Post
  #2  
Old 07-01-2008, 05:37 PM
Morgan's Avatar
Morgan Morgan is offline
Administrator
 
Join Date: Jul 2006
Posts: 2,255
Geek Article and Review System License Holder GeekMart License Holder Geek Auto-Linker Pro License Holder Geek Advertising Banner License Holder Geek Gazette License Holder 
Default

GARS should not be changing usergroup permissions like that, so double check the permissions for those usergroups under Usergroups -> Usergroup Manager -> Edit Usergroup as well as under Usergroups -> Forum Permissions for specific forums.

As for the count, it does not show on non GARS templates. The first post is the article, the second post is the first comment, the third post is the second comment, etcetera, and if there are multiple pages in the thread, the first post on a subsequent page in a thread would be out of order, so the counts don't show.

Not saying that they cannot be edited to show correctly, just why they were not showing, so try replacing the GARS - Process Postbit plugin with the following code and see if the counts show correctly.
Code:
global $vbulletin;
if (is_object($vbulletin->gars))
{
	$this->templatename = $vbulletin->gars->process_postbit();

	if ($show['postcount_garstemp'])
	{
		$show['postcount'] = $show['postcount_garstemp'];
		$post['postcount'] = $post['gar_postcount'];
	}
	if (!eregi('gars', $this->templatename))
	{
		$show['postcount_garstemp'] = $show['postcount'];
		if ($post['postcount'] - $post['gar_postcount'] == 2)
		{
			$show['postcount'] = 0;
		}
	}
}
__________________
Please use the forums for support, feature requests, and similar such things. Support does not include custom code, custom template edits, or third-party modifications. PMs and emails to me should be for private information only, such as login information. If you PM or email me a support question, chances are good that I'll ignore it. Thanks.
While the work or play is on, it is a lot of fun if while you are doing one you don't constantly feel that you ought to be doing the other. -- Franklin Pierce Adams
Reply With Quote