XF 1.5 Conditional for "Last Post" in a Thread?

rdn

Well-known member
I have a Code shown on every 4th thread post.
Now I would like to add a condition.

I would like to prevent it from showing when it's the Last Post of the thread.
How can I do that?

Many Thanks!
 
I tried:
PHP:
!in_array({$forum.node_id}, array(
1,2,3,4
))
AND
{$visitorIsBrowsingWithMobile}
AND
!{$thread.last_post_id}
and
PHP:
!in_array({$forum.node_id}, array(
1,2,3,4
))
AND
{$visitorIsBrowsingWithMobile}
AND
{$post.post_id} != {$thread.last_post_id}

Both doesn't show the widget.
 
Top Bottom