I have the cart summary displayed in the side bar.
When I click on 'View Cart' the contents of the cart always opens up in the current page.
The current template I am using means each page has the page name displayed as the header and therefore could be confusing to customers when the shopping cart contents are displayed under a the header of the current page.
Ideally I would like to display the contents of the shopping cart on it's own page.
I'm a beginner at all this so not sure if I am doing things correctly but one thing I have tried is changing this in the fe_showcart template
Code: Select all
document.location.href = 'index.php?mact=CartMadeSimple,cntnt01,cart,0&cntnt01product_id='+product_id+'&cntnt01attribute_id='+attribute_id+'&cntnt01qty='+newQty+'&cntnt01perfaction=update_product';
Code: Select all
document.location.href = 'index.php?mact=CartMadeSimple,cntnt01,cart,0&cntnt01product_id='+product_id+'&cntnt01attribute_id='+attribute_id+'&cntnt01qty='+newQty+'&cntnt01perfaction=update_product&cntnt01returnid=59';
Another problem I can foresee if this was to work would be that then I would need to get the 'Continue Shopping' link to direct somewhere else rather than staying on the shopping cart page.
Any assistance, guidance and suggestions are welcomed and appreciated.