Hello,
I have joomla 2.5 and last version of virtuemart.
I'm trying to force the "Continue Shopping" button showing in Cart page to redirect to a preselected category page (and not the last category page visited by the client).
In Component/com_virtuemart/views/cart/tmpl/default.php
<div class="width50 floatleft right">
<?php // Continue Shopping Button
if ($this->continue_link_html != '') {
echo $this->continue_link_html;
} ?>
</div>
I'd like to insert a href page, but i'm not sure about the syntax to use here.
Any help would be much appreciated!
Hi...
if you look into file
/components/com_virtuemart/views/cart/view.html.php line: 163 function: prepareContinueLink
You will see how the continue_link_html is being generated and you can change it there.
Thanks