Here is the code I have so far:
<?php
/**
* @package HikaShop for Joomla!
* @version 1.6.0
* @author hikashop.com
* @copyright (C) 2010-2012 HIKARI SOFTWARE. All rights reserved.
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
*/
defined('_JEXEC') or die('Restricted access');
?>
<?php $cart_type = JRequest::getString('cart_type','cart'); ?>
<script type="text/javascript">
setTimeout( 'try{ window.top.document.getElementById(\'sbox-window\').close(); }catch(err){ window.top.SqueezeBox.close(); }', 99999999<?php //echo (int)$this->config->get('popup_display_time',2000);?> );
</script>
<div id="cart" class="hikashop_notice_box_content" >
<div class="hd" style="cursor: auto; "><h1 class="hd-heading-modal">My Cart</h1></div>
<div class="bd">
<table>
<tbody><tr>
<th colspan="2" width="200">Item</th>
<th>Quantity</th>
<th> </th>
<th>Price</th>
<th> </th>
<th>Total</th>
<th> </th>
</tr>
<tr>
<td colspan="2" width="200"></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="buttons">
<td colspan="2"><div id="hikashop_add_to_cart_continue_div">
<?php echo $this->cartClass->displayButton(JText::_('CONTINUE_SHOPPING'),'continue_shopping',$this->params,'','try{ window.top.document.getElementById(\'sbox-window\').close(); }catch(err){ window.top.SqueezeBox.close(); } return false;','class="icon-undo icon-large btn btn-info"'); ?>
</div></td>
<td> <i href="#" class="icon-refresh icon-large btn" onclick="var qty_field = document.getElementById('hikashop_checkout_quantity_48'); if (qty_field && qty_field.value != '1'){ qty_field.form.submit(); } return false;" title="Refresh">
</i></td>
<td> </td>
<td><strong>Subtotal</strong></td>
<td>=</td>
<td><strong>$0.00</strong></td>
<td> <div id="hikashop_add_to_cart_checkout_div">
<?php echo $this->cartClass->displayButton(JText::_('PROCEED_TO_CHECKOUT'),'to_checkout',$this->params,hikashop_completeLink('checkout'.$this->url_itemid),'window.top.location=\''.hikashop_completeLink('checkout'.$this->url_itemid).'\';return false;','class="icon-lock icon-large btn btn-success"'); ?>
</div></td>
</tr>
</tbody></table>
</div>
What can I add to display the image, price, quantity, total? I think there must be way through the views to make it happen. You can see the site right now at:
Shaggy Chic Boutique
a sample page where you can click on the 'add to cart' to see the current modal is:
Shaggy Chic Boutique Flour Sack Towels
Any guidance would be greatly appreciated.