Hi,
I was thinking that my instructions was simple, but it's certainly because I know the code
So You have to replace:
if(hikashop_loadUser() == null){
global $Itemid;
By:
if(hikashop_loadUser() == null && $cart_type != 'wishlist'){
global $Itemid;
And:
if(hikashop_loadUser() == null){
$filters = array('a.session_id='.$database->Quote($user->session).' AND a.cart_type ='.$database->quote($cart_type));
}else{
$filters = array('(a.user_id='.(int)$user->id.' OR a.session_id='.$database->Quote($user->session).') AND a.cart_type ='.$database->quote($cart_type));
}
By: