Quote:
Originally Posted by Xplorer4x4
Well I finally have found the fix. This is tested and working in firefox, and does not create any more of those anoying empty tables when you edit.
REPLACE
PHP Code:
<if condition="!$GLOBALS['FIRSTPOSTID']">
WITH
PHP Code:
<if condition="$post[postcount] % $vboptions[maxposts] == 1">
If you need to exclude a user group form seeing them,
PHP Code:
<if condition="$post[postcount] % $vboptions[maxposts] == 1 AND $vbulletin->userinfo[usergroupid] != 'x' ">
|
Nice one dude! It works like a charm!! Thank you!!