Hi There,
I recently installed a fresh installation of HikaShop 1.5.2.
When proceeding to the shopping cart I get the following error:
Fatal error: Call to a member function get() on a non-object in /home/(...)/public_html/components/com_hikashop/views/checkout/tmpl/step.php on line 51
The piece of code in step.php (starting at line 50):
global $Itemid;
$checkout_itemid = $this->config->get('checkout_itemid');
if(!empty($checkout_itemid )){
$Itemid = $checkout_itemid ;
}
$url_itemid='';
if(!empty($Itemid)){
$url_itemid='&Itemid='.$Itemid;
}
It looks like $this->config is not seen as an object. However, in previous versions of HikaShop I never got this problem, although these line of code are not new.
Does anyone have an idea what's wrong?
Thanks!