View Full Version : Vbulletin 3.8.9 I want to change vbulletin status icons? (font awesome icons)
polyana
11-26-2020, 08:55 PM
I want to use awesome font icons instead of forum_old.gif, forum_new.gif, forum_link.gif etc .. icons in the forum.
I couldn't find the name of these icons inside the theme.
I want to give font awesome icons to every gif image.
https://forum.vbulletin.com/filedata/fetch?id=4450022&d=1605105966
Dr.CustUmz
11-26-2020, 09:10 PM
You want to search for<img src="$stylevar[imgdir_statusicon]/$forum[imageprefix]forum_$forum[statusicon].gif" alt="" border="0" id="forum_statusicon_$forum[forumid]" />
replace with
<i class="fa fa_ICON"</i>
to set a diffent icon based on status use
$forum[statusicon] which will return NEW / OLD
so you can do just an example
<if condition="$forum[statusicon] == 'new'">NEW ICON <else /> OLD ICON </if>
NOTE This will not allow you to double click the icon to mark the forum read, but if you look at the code you are replacing im sure you can figure it out ;)
You know I've actually never thought to do this, and super easy for that matter. May add this to my fontawesomer addon =)
polyana
12-07-2020, 01:10 PM
NOTE This will not allow you to double click the icon to mark the forum read, but if you look at the code you are replacing im sure you can figure it out ;)
You know I've actually never thought to do this, and super easy for that matter. May add this to my fontawesomer addon =)
Thank you bro.
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.