ljh23 Posted August 9, 2005 Posted August 9, 2005 Sorry for the duplicate post, but this is driving me nuts! I need to figure out how to remove where it shows the shipping weight during checkout. Does anyone have a suggestion? Thanks! Quote
boxtel Posted August 9, 2005 Posted August 9, 2005 Sorry for the duplicate post, but this is driving me nuts! I need to figure out how to remove where it shows the shipping weight during checkout. Does anyone have a suggestion? Thanks! <{POST_SNAPBACK}> that depends on which shipping module you use. Quote Treasurer MFC
ljh23 Posted August 9, 2005 Author Posted August 9, 2005 that depends on which shipping module you use. <{POST_SNAPBACK}> I am using the zone world contribution and have a table set up under zones Thanks! Quote
boxtel Posted August 9, 2005 Posted August 9, 2005 I am using the zone world contribution and have a table set up under zonesThanks! <{POST_SNAPBACK}> change this in module worldzones.php : $shipping_method = MODULE_SHIPPING_WORLDZONES_TEXT_WAY . ' ' . $order->delivery['country']['title'] . ': '; if ($shipping_num_boxes > 1) { $shipping_method .= $shipping_num_boxes . 'x '; } (MODULE_SHIPPING_WORLDZONES_MODE == 'price' ? $shipping_method .= MODULE_SHIPPING_WORLDZONES_TEXT_MODE : $shipping_method .= $order_total . ' ' . MODULE_SHIPPING_WORLDZONES_TEXT_UNITS ); break; to : $shipping_method = MODULE_SHIPPING_WORLDZONES_TEXT_WAY . ' ' . $order->delivery['country']['title']; break; Quote Treasurer MFC
ljh23 Posted August 9, 2005 Author Posted August 9, 2005 change this in module worldzones.php : Thank you very much! That worked perfect! You have helped me regain some faith in the badlands...um...I mean forums! :rolleyes: Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.