VirtueMart Forum

VirtueMart 2 + 3 + 4 => Virtuemart Development and bug reports => Topic started by: PRO on November 21, 2011, 18:54:34 PM

Title: [Fixed]Login on Cart Page Redirects to frontpage
Post by: PRO on November 21, 2011, 18:54:34 PM
When going to checkout. When you login, you are redirected to

index.php?option=com_virtuemart

Which shows the default layout.

views/cart/tpl/default_login.php
change this
<form action="<?php echo JRoute::_('index.php', true, 0); ?>" method="post" name="com-login" >

to this
<form action="<?php echo JRoute::_('index.php?option=com_virtuemart&view=cart', true, 0); ?>" method="post" name="com-login" >
Title: Re: Login on Cart Page Redirects to frontpage
Post by: alatak on November 22, 2011, 19:08:10 PM
Hi,

Fixed :)
revision 4789

txs.