UniversalAir 0 Posted September 21, 2012 I have OsCommerce 2.3.2 installed, and I am trying to get a free shipping on selected items. I have installed http://addons.oscommerce.com/info/8409 and I can't get it to operate properly. I am looking for anyone that can help me get a free shipping on select products. Share this post Link to post Share on other sites
Backard 0 Posted November 22, 2012 I have the same problem. Did you solve it? // Buck Share this post Link to post Share on other sites
loughati 0 Posted December 11, 2012 were you able to solve it? i need to do the same. pls help Share this post Link to post Share on other sites
rpdesign 11 Posted February 27, 2013 (edited) I'm currently working on a shipping module that expands on the table rates. My new module will have support for per category or per product and ship by qty, weight, or price. I have been thinking that a shipping per product module that is individualy configured per product would work better. My module right now is for OsCommerce 2.2 but i could look into making it work for 2.3 x I need the practice anyhow. If you want to talk pm me and i'll try to help :thumbsup: no promises though! Edited February 27, 2013 by rpetet Always backup your files! You will be glad you didMy add-ons :SSPP Seperate Shipping Per Product v2.5| SupportGift vouchers for SPPC 4.22 v2.1 | Support |Catalog Infobox v1.0 | Sorry no support for Catalog Infobox |HTML Mail v2.0 | Support |Upcoming Add ons:Addon Manager | Separate Pricing Per Product Qty |Coupon Populate | EZ-PDF Catalog Share this post Link to post Share on other sites
nepm 0 Posted April 7, 2015 Receiving this error in the log: PHP Notice: Undefined variable: product_info in catalog/includes/modules/new_products.php on line 35 In the file catalog/includes/modules/new_products.php is: if(tep_products_ship_free_check($product_info['products_id'])) Is this section needed in this file needed? // PRODUCTS SHIP FREE START $freeship_str = ''; if(tep_products_ship_free_check($product_info['products_id'])) $freeship_str = '<br /><span class="smallText">(' . TEXT_PRODUCT_SHIPS_FREE . ')</span>'; // $new_prods_content .= '<td width="33%" align="center" valign="top"><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $new_products['products_id']) . '">' . tep_image(DIR_WS_IMAGES . $new_products['products_image'], $new_products['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT) . '</a><br /><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $new_products['products_id']) . '">' . $new_products['products_name'] . '</a><br />' . $currencies->display_price($new_products['products_price'], tep_get_tax_rate($new_products['products_tax_class_id'])) . '</td>'; $new_prods_content .= '<td width="33%" align="center" valign="top"><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $new_products['products_id']) . '">' . tep_image(DIR_WS_IMAGES . $new_products['products_image'], $new_products['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT) . '</a><br /><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $new_products['products_id']) . '">' . $new_products['products_name'] . '</a><br />' . $currencies->display_price($new_products['products_price'], tep_get_tax_rate($new_products['products_tax_class_id'])) . $freeship_str . '</td>'; // PRODUCTS SHIP FREE END Share this post Link to post Share on other sites