MyBB Community Forums

Full Version: template conditionals - remove multi+ and reply w/quote from first post
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
template conditionals - remove + and reply w/quote from first post... preferably if character count is over a certain amount, example logic: If first post & if char count> 100 then don't show multi+ and don't show reply w/quote buttons.

Thanks : )
In postbit/postbit_classic templates change:
{$post['button_quote']}{$post['button_multiquote']}
to:
<if !($postcounter == 1 && strlen($post['message']) > 100) then>{$post['button_quote']}{$post['button_multiquote']}</if>
this worked out great. Ended up removing the strlen logic and just made it so can't reply to first post. thanks man.