Open denysdesign opened 8 years ago
Hi, folk!
Field joomla_module based in joomla plugin loadmodule and use content prepare.
The proposal to use joomla native render modules. This method optimize the display of the module and pull all the content plugins.
For example:
<?php $new_positions = JModuleHelper::getModules('right'); if($new_positions) { foreach($new_positions as $new_position) { echo JModuleHelper::renderModule($new_position, array('style'=>'html')); } } ?>
Code improvement proposal.
Hi, folk!
Field joomla_module based in joomla plugin loadmodule and use content prepare.
The proposal to use joomla native render modules. This method optimize the display of the module and pull all the content plugins.
For example: