MyBB Community Forums

Full Version: check if the thread in a forum
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I tried to write it many times but it didn't work,

check if the thread is in a forum ($forum['fid'])  ,using MyBB Template Conditionals
You'd probably need to check $thread['fid'], I doubt $forum is available in the showthread template
(2022-03-06, 10:40 PM)Matt Wrote: [ -> ]You'd probably need to check $thread['fid'], I doubt $forum is available in the showthread template

<if $thread['11']  then>
this is the tut section.
<else>
this is not the tut section.
</if>
didn't work in the showered template
did i write something wrong?
`$thread['fid']==11 is probably better : you have to check the value of $thread['fid'], I'm sure there is no $thread[11] variable
(2022-03-07, 11:58 AM)Crazycat Wrote: [ -> ]`$thread['fid']==11 is probably better : you have to check the value of $thread['fid'], I'm sure there is no $thread[11] variable

then it should be:

<if $thread['fid']==11  then>
yes
<else>
Nope
</if>

it Worked, thanks