carpesitus Posted December 7, 2012 Share Posted December 7, 2012 Hello, I am an admin and the site owner would like a flate rate per item per country. That part is set up and working, now they would like to put a cap on the domestic shipping fee. This can be either a maximum $$ amount for domestic shipping or only charge shipping for the first 2 items. Currently I am using Per Country Per Item v1.1 for the shipping module. http://addons.oscommerce.com/info/4934/v,22 Does anyone have a suggestion for setting up a maximum shipping amount on one group (domestic)? Quote Link to comment Share on other sites More sharing options...
carpesitus Posted December 7, 2012 Author Share Posted December 7, 2012 I could use some help with the php asap. What I need to do is add a condition for the United States if the item count is >2 the shipping_cost is $14.00 if ($dest_zone == 0) { $groups_cost = constant('MODULE_SHIPPING_PIPC_COST_DEFAULT'); $handle_cost = constant('MODULE_SHIPPING_PIPC_HANDLING_DEFAULT'); } else { $groups_cost = constant('MODULE_SHIPPING_PIPC_COST_' . $dest_zone); $handle_cost = constant('MODULE_SHIPPING_PIPC_HANDLING_' . $dest_zone); } $shipping_method = MODULE_SHIPPING_PIPC_TEXT_WAY . ' ' . $dest_country . ' : ' . $shipping_weight . ' ' . MODULE_SHIPPING_PIPC_TEXT_UNITS; $shipping_cost = $groups_cost * $total_count + $handle_cost; $this->quotes = array('id' => $this->code, 'module' => MODULE_SHIPPING_PIPC_TEXT_TITLE, 'methods' => array(array('id' => $this->code, 'title' => $shipping_method, 'cost' => $shipping_cost))); Thanks Quote Link to comment Share on other sites More sharing options...
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.