I cannot get the cart to show discounts!
I am trying to do a 2 layer discount, using a code column but the cart is not calculating the discounts. Help!!!!
I am trying to do a 2 layer discount, using a code column but the cart is not calculating the discounts. Help!!!!
Line 93 of your Creations18.php file reads:
$totalDiscount += ($this->ConditionalTotal("Price", "Salecode", "D") * .3);//Result
I think it should be:
$totalDiscount += ($this->ConditionalTotal("Price", "Salecode", "D") * 0.3);//Result
Other than that, if it still doesn't work, make sure you are saving the "D" in the Salecode properly in the shopping cart. Maybe display it on the cart page to confirm that it is set correctly.
I will change that line, but the discount code doesn't show in the cart. I am very frustrated! Was trying to get this up for this morning... :(
The website in question is www.starfireswords.com if you want to take a look...
The issue is probably either in the add to cart where you are adding the code, or maybe you haven't uploaded the cart folder after adding the column an discount? If I could get FTP access and a link to a product with the discount code, then I could look into it further.
The FTP information doesn't seem to work for me. Please confirm that there are no typos or IP restrictions that might be preventing my access.
As far as uploading, I uploaded the entire bloody site, multiple times, thinking I might be missing files... :(
Your add to cart has:
$ATC_salecode = floatval("R");// column binding
floatval() converts values to numbers... you need to store the text "R" not a number.
That line should read:
$ATC_salecode = "R";// column binding
It looks like you added that line manually. If you added it with the Server Behavior it would have been done correctly.
Thank you! If I hadn't been so tired and stressed, I would have caught that one. Updating the site as I type...
Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.
These out-of-the-box solutions provide you proven, tested applications that can be up and running now. Build a store, a gallery, or a web-based email solution.