Hi,

just a query! currently the discount coupon option is set on the "checkout payment" page, i would like to place the coupon option on the "shopping cart" page. However instead of rewriting the entire code for zen cart i manage to trick zen cart into thinking that the user entered the coupon code during the "shopping cart" page by creating a input box and writing the coupon code to the session id for the coupon code, i.e:

During the "shopping cart" stage if i set:

$_SESSION['cc_id'] = 6;

it makes zen cart think that the coupon id was set to 6 (coupon code 6 was selected). And this works perfectly. however i was just wondering if there are any consequence in setting the coupon code earlier on during the checkout stages? so far everything is going well, but is there anything i should be aware of before i move on??