Quote:
Originally Posted by Sgroove
Hi guys,
I can't understand why this plug-in is not working to me.
I have Vbulletin 3.8.4
The code in the file "forumhome_forumbit_level1_post" is:
<td><img src="$stylevar[imgdir_statusicon]/$forum[imageprefix]forum_$forum[statusicon].jpg" alt="" border="0" id="forum_statusicon_$forum[forumid]" /></td>
instead for the file "forumhome_forumbit_level2_post" the code is:
<td class="alt2"><img src="$stylevar[imgdir_statusicon]/$forum[imageprefix]forum_$forum[statusicon].gif" alt="" border="0" id="forum_statusicon_$forum[forumid]" /></td>.
I've installed the plug-in as explained in the instructions and i've replaced the code with the new one.
Does anyone knows why the plug-in is still not working?
|
I have the same code in 3.8.5 and this is what I did which worked:
Step 1: Upload the Plugin via the Product Manager!
Step 2: Edit the forumhome_forumbit_level1_post template
Find:
-----
<td class="alt1" width="30" style="border-right-width: 0;"><img src="$stylevar[imgdir_statusicon]/forum_$forum[statusicon].gif" alt="" border="0" id="forum_statusicon_$forum[forumid]" /></td>
Replace with:
-------------
<td><img src="<if condition="$show['customstatusicon']">$forum[customicon]<else />$stylevar[imgdir_statusicon]/forum_$forum[statusicon].gif</if>" alt="" border="0" /></td>
Step 3: Edit the forumhome_forumbit_level2_post template
Find:
-----
<td class="alt2" width="30"><img src="$stylevar[imgdir_statusicon]/forum_$forum[statusicon].gif" alt="" border="0" id="forum_statusicon_$forum[forumid]" /></td>
Replace with:
-------------
<td class="alt2"><img src="<if condition="$show['customstatusicon']">$forum[customicon]<else />$stylevar[imgdir_statusicon]/forum_$forum[statusicon].gif</if>" alt="" border="0" /></td>