XF 1.2 how to display text instead ↓ and ↑

Search inside templates the helper "{xen:helper sortArrow"...
It should be
HTML:
{xen:helper sortArrow, $order, $orderDirection, last_post_date}
Then you can add two extra params at the end:
HTML:
{xen:helper sortArrow, $order, $orderDirection, last_post_date, ' bottom', ' up'}

You can check how this helper works in XenForo_Template_Helper_Core::helperSortArrow
 
Top Bottom