I have been working on this for a while. Clicking on the "add to wishlist" button leads the user to a blank page. some preliminary investigation leads me to
components/com_hikashop/views/cart/tmpl/showcart.php and in dreamweaver there is a section of code which brings up the following error on line 93
Invalid Markup
Marked invalid because it doesn't belong inside the tag it's in.
This is the offending code with the surrounding areas
<a href="<?php echo JRoute::_('index.php?option='.HIKASHOP_COMPONENT.'&ctrl=cart&task=showcarts&cart_type='.$cart_type.$Itemid); ?>" >
<?php if($this->cartVal->display && ($userCurrent == $this->cartVal->user_id)){ ?>
<td>
<a href="#" onclick="javascript:document.forms['hikashop_show_cart_form'].submit();">
<span class="icon-32-save" title="<?php echo JText::_('HIKA_SAVE'); ?>">
</span>
<?php echo JText::_('HIKA_SAVE'); ?>
</a>
</td>
<?php } ?>
<td>
<?php
if(!$config->get('enable_multicart') && $cart_type == 'cart'){
?>
<a href="#" onclick="history.back()">
<?php
}else{
?>
[color=#ff0000]<a href="<?php echo JRoute::_('index.php?option='.HIKASHOP_COMPONENT.'&ctrl=cart&task=showcarts&cart_type='.$cart_type.$Itemid); ?>" >[/color]
<?php } ?>
<span class="icon-32-back" title="<?php echo JText::_('HIKA_BACK'); ?>">
</span>
<?php echo JText::_('HIKA_BACK'); ?>
</a>
</td>
</tr>
</table>
</div>
This is about as far as I can take it. Can anyone help
-- url of the page with the problem -- : apt-creative.com/janesredevelopment/admi...ikashop&ctrl=product
-- HikaShop version -- : 2.2.2
-- Joomla version -- : 2.5.14
-- PHP version -- : 5.3.20
-- Browser(s) name and version -- : Firefox 25
-- Error-message(debug-mod must be tuned on) -- : none