Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Recommended Posts

Posted

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!

Posted
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!

 

that depends on which shipping module you use.

Treasurer MFC

Posted
I am using the zone world contribution and have a table set up under zones

Thanks!

 

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;

Treasurer MFC

Posted

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:

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...