I currently offer USPS and Fedex as my shipping options and need to add free shipping on only some items. So, I have enabled freeshipper so that if an items weight is 0 it has a free shipping option.
However, it wasn't working. The free shipping option didn't show. Only a fedex shipping option was available for items weighing 0. So, I made this fix in my fedex.php:
This made it so that the free shipping items now had the option of selecting fedex or free shipping. However, all of my regular items only can select USPS. Fedex is no longer available for those items.// disable only when entire cart is free shipping
if (zen_get_shipping_enabled($this->code)) {
$this->enabled = ((MODULE_SHIPPING_FEDEX_GROUND_ZONE == 'True') ? true : false);
}
Does anyone know how I can fix this? I need fedex to be available to all items.
I appreciate any help!
Thanks!
Corinne



