Quantcast
Channel: MyBB Community Forums - Tutorials
Viewing all articles
Browse latest Browse all 685

Sticky Threads Fa Icon

$
0
0
If you're using thread icons as Fa icons and wondering how to set Important Threads with sticky fa icon like xenforo this is how you would want to do it.

Edit: Template Conditionals plugin needs to be installed for this.

Forumdisplay Template > Forumdisplay_Thread

Find:
Code:
<span class="{$folder}" title="{$folder_label}">&nbsp;</span>

Replace With:
Code:
<if $thread['sticky'] then>
<i class="fa fa-thumb-tack sticky-icon" aria-hidden="true"></i>
<else>
<span class="{$folder}" title="{$folder_label}">&nbsp;</span>
</if>

Now go to global.css and add
Code:
.sticky-icon {
    color: orange;
}

You're free to change the color to whatever you like.

Viewing all articles
Browse latest Browse all 685

Trending Articles