Hi,
Try to use a child theme for this kind of modification, please edit InStyle/layouts/header.php file and replace:
- Code: Select all
<?php _e('Shopping Cart', GKTPLNAME); ?>
with:
- Code: Select all
<a class="cart-contents" href="<?php echo $woocommerce->cart->get_cart_url(); ?>" title="<?php _e('View your shopping cart', GKTPLNAME); ?>">
<?php echo sprintf(_n('%d item', '%d items', $woocommerce->cart->cart_contents_count, GKTPLNAME), $woocommerce->cart->cart_contents_count);?> - <?php echo $woocommerce->cart->get_cart_total(); ?>
dont' forget to add also global $woocommerce variable at the beginning of this file.