Help with Custom Forum Status Icons 3.5

Status
Not open for further replies.

Th3_Narcissist

Banned
Banned
470
2009
0
0
Anyone manage to get the above product to work on vB 3.8.2? The instructions are bullshit but i've edited the templates, just can't get my images to appear for my different sections. It doesn't even tell you where to find the control panel because there isn't one! XD
 
6 comments
This worked for me hope it helps

PHP:
Modify forumhome_forumbit_level1_post

Search:

<img src="$stylevar[imgdir_statusicon]/forum_$forum[statusicon].gif" alt="" border="0" id="forum_statusicon_$forum[forumid]" />

Replace with this:

<img src="$stylevar[imgdir_statusicon]/forum_$forum[forumid].png" alt="" border="0" />

(I used png as image, default is gif so need to change above to pic format) 


Modify forumhome_forumbit_level2_post :

Search:
<img src="$stylevar[imgdir_statusicon]/forum_$forum[statusicon].png" alt="" border="0" id="forum_statusicon_$forum[forumid]" />

Replace with this:
<img src="$stylevar[imgdir_statusicon]/forum_$forum[forumid].png" alt="" border="0" />

(I used png as image, default is gif so need to change above to pic format) 

Now UPLOAD your images in your /statusicon/ folder.
You have to name your image as forumid number example: 100.png
 
Have you checked: XD-GamersV2/statusicon/forum_new.gif ?

If you go to styles in AdminCP go to search templates and search for: forum_new or forum_old
 
the best and simple way to set ur own status icons.
open ur forumhome_forumbit_columncell
and find this
Code:
<img src="$stylevar[imgdir_statusicon]/[COLOR=Black][COLOR=#000000][COLOR=#dd0000]forum_$forum[statusicon].gif alt="" border="0" />[/COLOR][/COLOR][/COLOR]
and replace this with
Code:
<img src="$stylevar[imgdir_statusicon]/$forumid.png" alt="" border="0" />
now put ur png images in template's statuscion images.

Edit: u must rename ur images like that
if ur Applications forum id is 12 then ur img name must be 12.png which will atomaticaly in right place..

demo: http://www.kk4tech.com/kk/
 
Status
Not open for further replies.
Back
Top