View Single Post
  #1  
Old 02-21-2008, 04:26 PM
 
Chrisb Chrisb is offline
 

Member
  
Join Date: Jan 2008
Posts: 25
 

Default 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
Reply With Quote