Another thing people might like is to pull the shopping cart out of the hamburger on mobile. You do this by putting this right below the </button> in tpl_header in common
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<i class="fas fa-bars"></i>
</button>
<div class="mobile-cart-wrap d-lg-none">
<a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>">
<i class="fa fa-shopping-cart"></i>
<span class="badge badge-pill badge-primary"><?php echo $_SESSION['cart']->count_contents(); ?></span>
</a>
</div>


Reply With Quote

