Re: Free Shipping Rules addon [Support Thread]
Quote:
Originally Posted by
rickiesdiscount
numinix do you know how people are getting their prices to show up with tax and shipping underneath their prices in google base now?.....because i noticed that this is not possible with your google feeder contribution
The taxes were already updated, but the shipping hasn't yet been supported. It is on the to do list but isn't a priority at this time. Expect something similar to the eBid module with Per Category Shipping being supported first as well as other default Zen Cart shipping modules. Unfortunately modules that need to connect to an external server like FedEx will take some time to implement, let alone the amount of time they will cause the script to take and most likely cause any medium to large store to time out during the feed creation...
Re: Free Shipping Rules addon [Support Thread]
As per Rickie's request, here is the updated version: http://www.numinix.com/index.php?mai...roducts_id=755
It has also been uploaded to the Zen Cart download's section and should be available as soon as the ZC team has approved the update.
Re: Free Shipping Rules addon [Support Thread]
Can this be applied to just 1 product ? I want to allow free shipping on a certain product that meets certain requirements, but I don't want it to apply to all of my products. Thanks.
Re: Free Shipping Rules addon [Support Thread]
It is currently an all or nothing shipping module. You could modify the script to only appear if all of the products are from a specific category or are a specific product.
PM me if you need someone to do this for you. Or visit my website for more information on our services.
Re: Free Shipping Rules addon [Support Thread]
Does any one know how to get this module to work with the "Free Shipping Qualifier SideBox Module"?
Re: Free Shipping Rules addon [Support Thread]
Quote:
Originally Posted by
smoke133
Does any one know how to get this module to work with the "Free Shipping Qualifier SideBox Module"?
You can use the logic that is applied to tpl_product_info_display.php:
PHP Code:
<?php if (MODULE_SHIPPING_FREERULES_STATUS == 'True') {
include(DIR_WS_MODULES . 'shipping/freerules.php');
$freerules = new freerules();
if ($freerules->test((int)$_GET['products_id'])) {
$freerules_shipping = true;
} else {
$freerules_shipping = false;
}
}
?>
Re: Free Shipping Rules addon [Support Thread]
Quote:
Originally Posted by
numinix
You can use the logic that is applied to tpl_product_info_display.php:
PHP Code:
<?php if (MODULE_SHIPPING_FREERULES_STATUS == 'True') {
include(DIR_WS_MODULES . 'shipping/freerules.php');
$freerules = new freerules();
if ($freerules->test((int)$_GET['products_id'])) {
$freerules_shipping = true;
} else {
$freerules_shipping = false;
}
}
?>
I don't really get what you mean...could you please elaborate on the specific steps?
Re: Free Shipping Rules addon [Support Thread]
Hi...
I was just reading all the posts in this thread but I wanted to know because I live in Canada with zones for provinces, I would like to offer free shipping on products totaling over $1000 and under 300lbs but the free shipping is only offered in a certain city??? Is this even possible... I know I should have investigated more in the forums but I like your addon so I had to ask you the question...
Thanks
Richard
Re: Free Shipping Rules addon [Support Thread]
Is it possible to offer free shipping by category?
For example if someone only orders items from Cat (1) and they meet a specific rule then free shipping applies.
But if they also order from Cat (b) no free shipping applies.
Thanks
Re: Free Shipping Rules addon [Support Thread]
Hi everyone -
was trying to get rid of the Free Shipping image (I only use free shipping for events) and I screwed something up.
There's a line of code showing:
http://www.primitivesoaps.info/shopp...&products_id=1
Where can I get rid of that? Thanks!