/includes/modules/shipping/table.php
Or
/includes/modules/shipping/the-one-you-want.php
Use code seen in post #25
/includes/modules/shipping/table.php
Or
/includes/modules/shipping/the-one-you-want.php
Use code seen in post #25
where do i /includes/modules/shipping/table.php? I tried adding it to my zen-cart address but it came up with "not found"
this is a location of a file on your server; like the files uploaded before install, or like and address of a file.
use FTP or 'file manager in your hosting control panel' to access and edit this file.
Zone table is only working for only one categegoirs , how i will enable for 3 to four diffrent categoire with diffrent shipping charges with diffrent tax class. please let me know
Thanks
Zahid![]()
Zencart 1.3.9f
Modules installed
Aus Post (uninstalled)
Image Handler2
I need help please. I have -
Some products under the value of $45 or orders totals are under $45 and I want to charge a fixed freight fee of $10 (anything adds up to $45)
Some products over the value of $45 and want them to be FREE shipping with Free shipping logo showing.
In the Products sections, I have marked some products as follows:
Free Shipping with Free shipping logo displayed - I have all ready activated some of the items as 'Always Free Shipping: Yes, Always Free Shipping'
All products are sold within Australia only.
Which shipping do I need to use?
What will be my 'Shipping Table' figures be?
I really appreciate if someone please help.
Last edited by oavs; 25 Oct 2010 at 02:04 PM.
no just keep your flat rate for that.
##################################################_
this has a side box to tell people how close they are to getting free shipping: http://www.zen-cart.com/index.php?ma...roducts_id=550
I got a problem now.
I have
Flat Rate > Shipping Cost> $10
Free Shipping Options
If I purchase
1 x item value of $232.95 (which would normally have freight cost $0 - over $45)
1 x item value of $29.95 (which would normally have freight cost $10 - under $45)
So total freight should be Zero, but shipping estimator says
Flat Rate (Best Way) $10
Free Shipping Options (Free Shipping) $0
Total of $21 freight ! what's going on?
anyway as I was writing this I found out that I had to change as well in addition to above to make it work
Modules >Order Total> Shipping>
Allow Free Shipping: True
Free Shipping For Orders Over: $45
it seems alright now and working but do I now really need Modules > Shipping > Free Shipping Options installed to make this work ?
The Free Shipping Options freeoptions is a shipping module for having a Free Shipping Option show at the same time as other shipping modules ...
You have this set up so that Flat Rate flat shows for $10.00 ... and then if the Order is at >= $45 the Free Shipping Options shows ...
However, these trigger to both show at >= $45.00 ...
The good point is it gives the customer a choice for $10.00 as a quicker method to ship or the slower Free Shipping Option ...
If this isn't the case of one method being faster than the other, then you want the Flat Rate flat shipping module to be disabled or hide when the Total is >= 45.00 ...
So, this means that you would need to customize the Flat Rate flat shipping module if you want to turn it off for orders of >= $45.00 ... and this is done by controlling the:
$this->enabled
in the shipping module based on the total of the Order ...
You can do this by customizing the Flat Rate flat shipping module with the code:
NOTE: I like to clone the shipping module rather than just edit it, so that I don't overwrite it in the future on upgrades ...Code:// Check for Weight and display module if weight exceeds stated value if (IS_ADMIN_FLAG == false && $_SESSION['cart']->show_total() > 45) { $this->enabled = false; }
Or, just be sure to keep a backup of your customized shipping module if you overwrite the original so that you have it for the future ...
NOTE: if you look a few posts back from this one, you can see how this is used in the code and where to put it ...
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!