Anyone know how to remove shipping costs from the checkout confirmation page? - my products are downloadable and that being included in the totals as £0.00 looks slightly non-sensical>>
_thanks
Anyone know how to remove shipping costs from the checkout confirmation page? - my products are downloadable and that being included in the totals as £0.00 looks slightly non-sensical>>
_thanks
If you are seeing the checkout_shipping page when you only have Downloads in the shopping cart then you have them configured incorrectly ...
Downloads are configured as:
Product is Virtual: No, Shipping Address RequiredDownloads know that they do not have shipping based on the filename on the attribute ...Always Free Shipping: No, Normal Shipping Rules
Once setup correctly, you can then change the language file on the shipping from:
to something that works better for you .../includes/languages/english/modules/order_total/ot_shipping.php
Line #25 : define('FREE_SHIPPING_TITLE', 'Free Shipping');
Linda McGrath
If you have to think ... you haven't been zenned ...
Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!
Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
Officially PayPal-Certified! Just click here
Try our Zen Cart Recommended Services - Hosting, Payment and more ...
Signup for our Announcements Forums to stay up to date on important changes and updates!
Thanks for the reply..>>
No.. I'm not ... I should say that I have the add on 'Fast and Easy Checkout' currently installed so when I'm taken to the one page checkout from the shopping cart the shipping costs (of £0.00) are included at the bottom - in the totals - which as I said is pointless.If you are seeing the checkout_shipping page when you only have Downloads in the shopping cart then you have them configured incorrectly ...
Do you know how to remove this line?
_thanks
I do not use that Add On ... so I really could not tell you what needs to be done ...
Linda McGrath
If you have to think ... you haven't been zenned ...
Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!
Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
Officially PayPal-Certified! Just click here
Try our Zen Cart Recommended Services - Hosting, Payment and more ...
Signup for our Announcements Forums to stay up to date on important changes and updates!
It makes no difference regarding this - I only told you so that you would understand that I don't have a shipping page or even payment module page before - so however you would do it without the add-on will be the same with it ~ that's if you can help..I do not use that Add On ... so I really could not tell you what needs to be done ...
_thanks
Try this and see if it works ...
Edit the module:
/includes/modules/order_total/ot_shipping.php
and replace the function process with:
This will make it not show in the checkout ... then change the language file for:Code:function process() { global $order, $currencies; if ($order->info['shipping_cost'] == 0) { // do not show it } else { // show it $this->output[] = array('title' => $order->info['shipping_method'] . ':', 'text' => $currencies->format($order->info['shipping_cost'], true, $order->info['currency'], $order->info['currency_value']), 'value' => $order->info['shipping_cost']); } }
to read how you want it to appear in the My Account ...Code:/includes/languages/english/modules/order_total/ot_shipping.php Line #25 : define('FREE_SHIPPING_TITLE', 'Free Shipping');
I am guessing that this should work with your add on as well ...
Linda McGrath
If you have to think ... you haven't been zenned ...
Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!
Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
Officially PayPal-Certified! Just click here
Try our Zen Cart Recommended Services - Hosting, Payment and more ...
Signup for our Announcements Forums to stay up to date on important changes and updates!