News:

Support the VirtueMart project and become a member

Main Menu

Force the "Continue Shopping" button redirect to category page

Started by moustik_3, January 27, 2013, 13:12:28 PM

Previous topic - Next topic

moustik_3

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!

chetanmadaan

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