MyBB Community Forums

Full Version: Hide newpoints postbit for admin group?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi there, is it possible to remove newpoints postbit for only admin group? I do have template conditionals installed
you can try using conditional like below
<if $post['usergroup'] <> 4 then>
// newpoints related variables
</if>
(2019-06-11, 02:54 AM).m. Wrote: [ -> ]you can try using conditional like below
<if $post['usergroup'] <> 4 then>
// newpoints related variables
</if>

Worked great! Thanks you .m.