XF 2.3 Exclude trending topic widget on certain node

PhineasD

Well-known member
Licensed customer
I'm using with the following conditional but not working:

PHP:
!$forum.node_id == 65
!in_array($forum.node_id, [65])
$forum.node_id != 65
 
Sorry... I solve it with:

PHP:
!in_array($xf.reply.containerKey, ['node-65'])

 
Solution
Back
Top Bottom