Hello, Sergey.
At a moment we can use Joomla plugins only with HTML field, but what do you think to turn on plugin mode globally in all templates, by default?
For example records/tmpl/default.php, line 35
<?php echo $this->loadTemplate('markup_'.$this->section->params->get('general.tmpl_markup', 'default'));?>
if we change it to
<?php echo JHTML::_('content.prepare', $this->loadTemplate('markup_'.$this->section->params->get('general.tmpl_markup', 'default')));?>
we will be able to load any Joomla plugin code directly in custom list template.
Hello, Sergey.
At a moment we can use Joomla plugins only with HTML field, but what do you think to turn on plugin mode globally in all templates, by default?
For example records/tmpl/default.php, line 35
if we change it to
we will be able to load any Joomla plugin code directly in custom list template.