Page 1 of 1

Link to cart page via shopping cart

Posted: Wed Jun 04, 2014 1:09 am
by ShaneTFletcher
Hi guys,

Basically, I want the total (1 item(s) - £237.00) to be a link to the cart page.

It might be rather easy but I can't seen to find a way around this.

I wondered if there was someone to point in the direction of what to place into the cart files.

Thanks

Re: Link to cart page via shopping cart

Posted: Wed Jun 04, 2014 9:44 am
by NoJoke
Navigate to : catalog/view/theme/yourtheme/template/module/cart.tpl

find :

Code: Select all

 <a><span id="cart-total"><?php echo $text_items; ?></span></a>
Change that to :

Code: Select all

<a href="index.php?route=checkout/cart"><span id="cart-total"><?php echo $text_items; ?></span></a>
That should work for you, if not let me know.