commerce_popup_cart_cart.tpl.php in Commerce Popup Cart 7
Shopping cart template.
1 theme call to commerce_popup_cart_cart.tpl.php
- commerce_popup_cart_block_view in ./
commerce_popup_cart.module - Implements hook_block_view().
File
theme/commerce_popup_cart_cart.tpl.phpView source
<?php
/**
* @file
* Shopping cart template.
*/
?>
<div class="wrapper">
<div class="cart-icon"></div>
<span class="cart_popup_count"><?php
print $product_count;
?></span>
<div id="cart-popup" style="display:none;">
<?php
print theme('commerce_cart_block', $variables['variables']);
?>
<div class="popup-arrow"></div></div>
</div>