ManOnDaMoon
Well-known member
As detected by Neil E.
The thread_list template contains the following:
But on XenForo and other XF sites, the phrase loaded with
does not show up in any thread list:
The text shows up when the template is modified as follows ("dt" element becomes "dd"):
though it is printed on two lines due to the column being not wide enough.
The thread_list template contains the following:
HTML:
<dl class="sectionHeaders">
<dt class="posterAvatar"><a><span>{xen:phrase sort_by}:</span></a></dt>
<dd class="main">
<a href="{xen:link forums, $forum, '_params={$orderParams.title}'}" class="title"><span>{xen:phrase title}{xen:helper sortArrow, $order, $orderDirection, title}</span></a>
<a href="{xen:link forums, $forum, '_params={$orderParams.post_date}'}" class="postDate"><span>{xen:phrase start_date}{xen:helper sortArrow, $order, $orderDirection, post_date}</span></a>
</dd>
</dl>
But on XenForo and other XF sites, the phrase loaded with
Code:
{xen:phrase sort_by}
The text shows up when the template is modified as follows ("dt" element becomes "dd"):
Rich (BB code):
<dl class="sectionHeaders">
<dd class="posterAvatar"><a><span>{xen:phrase sort_by}:</span></a></dt>
<dd class="main">
<a href="{xen:link forums, $forum, '_params={$orderParams.title}'}" class="title"><span>{xen:phrase title}{xen:helper sortArrow, $order, $orderDirection, title}</span></a>
<a href="{xen:link forums, $forum, '_params={$orderParams.post_date}'}" class="postDate"><span>{xen:phrase start_date}{xen:helper sortArrow, $order, $orderDirection, post_date}</span></a>
</dd>
</dl>