Using Joomla 3.10.11, T3 Framework 3.1.2 and T3 Blank "2.3.0" downloaded from here - the download link states 2.3.0, the filename reads t3-blank-template_2.3.0.zip but the installed template in Joomla shows 2.2.9.

Anyway, the templateHook file is loaded, but none of the events are triggered. I can see in the code that the following code is now used:
JFactory::getApplication()->triggerEvent('onT3Init');

But the corresponding hook for this does not work, nothing happens:

`
jimport('joomla.event.event');

class T3_BlankHook extends JEvent
{

public function __construct(&$subject, $config)
{
	parent::__construct($subject, $config);		
}

public function onT3Init() // no params
{
	die("this does not display");
}

}
`

Hi

I reported to our team to check this package of template again, I will keep you posted.

We updated the template package, kindly check.

8 months later

FYI this is still broken, I'm not sure why but in this commit the instance to register events is commented out. Restoring the code makes this work in J3.

    Write a Reply...
    You need to Login to view replies.