dethfire Well-known member May 1, 2024 #1 Trying to get the thread title in xfes_widget_similar_threads like <h3 class="block-header">Similar threads: {$thread.title}</h3> but it renders as blank even though it appears the thread variable is exposed. Any ideas?
Trying to get the thread title in xfes_widget_similar_threads like <h3 class="block-header">Similar threads: {$thread.title}</h3> but it renders as blank even though it appears the thread variable is exposed. Any ideas?
Chris D XenForo developer Staff member May 1, 2024 #2 The thread record is available in the $context variable so: Code: <h3 class="block-header">Similar threads: {$context.thread.title}</h3> Upvote 0 Downvote
The thread record is available in the $context variable so: Code: <h3 class="block-header">Similar threads: {$context.thread.title}</h3>