MyBB Community Forums

Full Version: Change STICKY and LOCKED style?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Instead of Important Threads seperate container, I want to show buttons before title saying STICKY or LOCKED like in IPB!

[Image: 87WxKAs.png]
(2013-12-14, 10:07 AM)BigTimeRush Wrote: [ -> ]Instead of Important Threads seperate container, I want to show buttons before title saying STICKY or LOCKED like in IPB!

[Image: 87WxKAs.png]

in forumdisplay.php

find

if($thread['sticky'] == "1" && !$donestickysep)

add above

		if($thread['closed'])
		{
			$prefix = $lang->closed_prefix;
		}
		
		if($thread['sticky'] == "1" && $thread['poll'] == "0")
        {
            $prefix = $lang->sticky_prefix;
        }

\inc\languages\your language\global.lang.php

find

$l['sticky_prefix'] = "<strong>Sticky:</strong>";
$l['poll_prefix'] = "Poll:";

replace

$l['sticky_prefix'] = "<span style='background:#7BA60D;display: inline-block;height: 16px;line-height: 16px;padding: 0px 5px;font-size: 9px;font-weight: bold;text-transform: uppercase;color: rgb(255, 255, 255);border-radius: 4px 4px 4px 4px;vertical-align: middle;'>Pinned</span>";
$l['poll_prefix'] = "<span style='background:#ED7710;display: inline-block;height: 16px;line-height: 16px;padding: 0px 5px;font-size: 9px;font-weight: bold;text-transform: uppercase;color: rgb(255, 255, 255);border-radius: 4px 4px 4px 4px;vertical-align: middle;'>Poll</span>";
$l['closed_prefix'] = "<span style='background:#d74343;display: inline-block;height: 16px;line-height: 16px;padding: 0px 5px;font-size: 9px;font-weight: bold;text-transform: uppercase;color: rgb(255, 255, 255);border-radius: 4px 4px 4px 4px;vertical-align: middle;'>Closed</span>";

demo: my forum --> link in www buttom of my postbit
I dont know what happened but my forum isnt opening now.
http://gtagamerz.ga/

Forum opens but sections dont open.
(2013-12-16, 04:28 PM)BigTimeRush Wrote: [ -> ]I dont know what happened but my forum isnt opening now.
http://gtagamerz.ga/

Forum opens but sections dont open.

check all steps again plz...
Yes I did. But still same problem
The sections which have pinned topics doesnt opens.
The sections without any pinned topics in it opens.
any help on how to do it?