Coupon redirection issues
I have managed to move the coupon entry box to the final submit order page however when I type the coupon code in it redirects me to the previous page. How can I get it to stay on the current page?
The code to redirect to page after coupon has been entered from discount_coupon.php
if($my_coupon > 0) {
$cart["discount_coupon"] = "";
$cart["coupon_type"] = "";
$top_message['type'] = 'E';
}
func_header_location("cart.php?mode=checkout");
}
elseif ($mode=="unset_coupons") {
$cart["discount_coupon"]="";
$cart["coupon_type"] = "";
func_header_location("cart.php?mode=checkout");
}
The code I pasted into checkout.tpl to bring up coupon box
{if $cart.coupon_discount eq 0 and $products ne ""}
<p />
{if $active_modules.Discount_Coupons ne ""}
{include file="modules/Discount_Coupons/add_coupon.tpl}
{/if}
{/if}
__________________
www.easycoffee.com.au
Version 4.1.9
|