VirtueMart Forum

VirtueMart 2 + 3 + 4 => Virtuemart Development and bug reports => Topic started by: Willc on June 13, 2012, 17:16:07 PM

Title: [SOLVED] Change URL Redirection
Post by: Willc on June 13, 2012, 17:16:07 PM
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
Title: Re: Change URL Redirection
Post by: Willc on June 13, 2012, 20:32:32 PM
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