Bug [# 1236] greybox does not display properly because of ssl_redirect
Tags:   No tags associated yet.

  Go back
 Category:  --  Severity:  --  Version:  VirtueMart 1.1.0 beta1
 Joomla! Version:  --  Browser Version:  --  Fixed in Version:  --
Description:
When using the default template you can select to have the checkout process in "greybox" (aka, ajax popup window). When this is selected, it works, but inside the box all of the rest of the template is displayed, not just the virtuemart content.

It seems this has something to do with the ssl redirect, so i manualy changed the ssl_redirect=1 to ssl_redirect=0 and everything seems to work on.

Details:
Submitted Comment
soeren_nb
Mar 27 2007
as a temp fix, i did the following


in shop.cart.tpl.php change
$href2 = $sess->url( $mm_action_url . "/index2.php?page=checkout.index&ssl_redirect=1", true);

to

$href2 = $sess->url( $mm_action_url . "/index2.php?page=checkout.index&ssl_redirect=0", true);


although this fixed it for me, a shop that needs ssl may not work correctly if this is done this way...


I also noticed no styling is applied to these pages, can we change that?

Shouldn't the page auto redirect once you complete the checkout process in greybox, rather than showing the cart with items in it, even though you've already checked out?