Hi,
So I am trying to have some message too if no results. I use module filter and I do have this code in my listing file:
}elseif(( !$this->module || JRequest::getVar('hikashop_front_end_main',0) ) && (@$_GET=='product' || @$_GET=='product') && (@$_GET=='listing' || @$_GET=='listing') && !empty($this->filters) && count($this->filters)){
echo JText::_('HIKASHOP_NO_RESULT');
But text won't show up. Only if I change it to this ( as per @lousyfool post ) works:
}else {
echo JText::_('HIKASHOP_NO_RESULT');
}
I also tried Mohamed code but still no luck....
After reading Nicolas post that that condition is necessary I thought I should do like it needs by default for Hikashop.
What could be the problem?
Thanks