News:

Looking for documentation? Take a look on our wiki

Main Menu

[SOLVED] Change URL Redirection

Started by Willc, June 13, 2012, 17:16:07 PM

Previous topic - Next topic

Willc

Hello
I running VM 2.0.6 on Joomla 2.5.4.

I wanna know, how to change the URL Redirection after submit the EDIT ADDRESS page.

This currently redirecting to cart again. I wanna this redirect straight to SELECT SHIPMENT PAGE.

What code line and file I must to change to get this result.


Thanks

Willc

#1
FIND!

I have just replace the following line in various functions in file:

components/com_virtuemart/controllers/user.php

$this->setRedirect(JRoute::_('index.php?option=com_virtuemart&view=cart') , $msg);

by this one

$this->setRedirect(JRoute::_('index.php?option=com_virtuemart&view=cart&task=edit_shipment') , $msg);

Hope that it help further googlers with the same problem.

Thanks