I try to use the equivalent of the url below from the hikashop demo page (it does respond with the markup of the updated cart module so that it can be updated)
The problem is that in my testing site (not accessible from outside) the output of that page is just this:
<div id="system-message-container">
<div id="system-message">
</div>
</div>
I know something is right, using the debugger I can check that in the display() function from hikashopView (in components/com_hikashop/helpers/helper.php) the view of the module has been correctly rendered, but the output is finally another one!
function display($tpl = null) {
$lang = JFactory::getLanguage();
if($lang->isRTL()) $this->direction = 'rtl';
if($this->triggerView) {
JPluginHelper::importPlugin('hikashop');
$dispatcher = JDispatcher::getInstance();
$dispatcher->trigger('onHikashopBeforeDisplayView', array(&$this));
}
if(!empty($this->toolbar)) {
$toolbarHelper = hikashop_get('helper.toolbar');
$toolbarHelper->process($this->toolbar);
}
parent::display($tpl); <--***---Here the view is correctly rendered
if($this->triggerView) {<--****---Even if this is set to false by the debugger the output is still wrong
$dispatcher->trigger('onHikashopAfterDisplayView', array( &$this));
}
}
I'm going mad with this one!
-- url of the page with the problem -- :
demo.hikashop.com/index.php?option=com_h...NzgmbGFuZz1lbg%3D%3D
-- HikaShop version -- : 2.3.0
-- Joomla version -- : 3.2.2
-- PHP version -- : 5.3.28
-- Browser(s) name and version -- : Firefox 27.0
-- Error-message(debug-mod must be tuned on) -- : No error messsage on screen or PHP error log