MOZ
Well-known member
One of my addons utilises the template_create even to replace a template.
I have used the following code, however the template is not replaced. The method is definitely called as I tested manually .
I have used the following code, however the template is not replaced. The method is definitely called as I tested manually .
PHP:
<?php
class SortMem_Listener_MemListSort
{
public static function templateCreate($templateName, array &$params, XenForo_Template_Abstract $template)
{
if ($templateName == 'member_list')
{
$templateName = 'member_list_item';
}
}
}