MyBB Community Forums

Full Version: My support don't show [unsolved] only [solved]
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi how is it possible not to show [unsolved] text neither image only show [solved] text and image?
Thanks
if you are using images for mysupport plugin then you can use style code like below at the bottom of global.css
img[SRC*="notsolved"] {display: none!important;}
hard refresh your browser (eg. press CTRL + F5) on a forum display page after saving the stylesheet
thanks .M. how can I hide [unsolved] text?

Maybe I can hide it with conditional
I'm not totally familiar with the syntax for template conditionals but this should work... in the mysupport_status_image and mysupport_status_text templates, put this at the start of each:

<if $thread['status'] == 1 then>

and this at the end of each:

</if>

That do it?
Thanks Matt your conditional hides everything so I tryed this one and it works!
<if ($status != 0) then>
</if>

Thanks Matt very much Heart