Hi jackpotwinner,
2. The problem of the "View wishlist" button in the popup has been corrected, you can see this post to edit it on your end:
www.hikashop.com/en/forum/4-how-to/64555...questions.html#65049
You can add a check for the back button, if the user is not logged in, you can hide this button, or set another url.
Edit the view "cart / showcarts" in HikaShop > Display > Views
And add the code:
$userCurrent = hikashop_loadUser(true);
if(isset($userCurrent))
$userCurrent = $userCurrent->id;
else
$userCurrent = 0;
After:
$cart_type = JRequest::getString('cart_type','cart');
and the code:
<?php if($userCurrent != 0){ ?>
<td>
<a href="<?php echo JRoute::_('index.php?option='.HIKASHOP_COMPONENT.'&view=user&layout=cpanel'.$Itemid); ?>" >
<span class="icon-32-back" title="<?php echo JText::_('HIKA_BACK'); ?>">
</span>
<?php echo JText::_('HIKA_BACK'); ?>
</a>
</td>
<?php } ?>
Instead of:
<td>
<a href="<?php echo JRoute::_('index.php?option='.HIKASHOP_COMPONENT.'&view=user&layout=cpanel'.$Itemid); ?>" >
<span class="icon-32-back" title="<?php echo JText::_('HIKA_BACK'); ?>">
</span>
<?php echo JText::_('HIKA_BACK'); ?>
</a>
</td>
To remove the back button, or you can change the url by adding a else condition.