DrumrLC Posted June 16, 2011 Share Posted June 16, 2011 Is there a shipping module that works similar to the Table Rate (Best Way) shipping module from 2.2 that's compatible with 2.3? I need to charge a minimum shipping fee then a percentage based on price. Thanks. Quote Link to comment Share on other sites More sharing options...
Guest Posted June 16, 2011 Share Posted June 16, 2011 Brian, To the best of my knowledge there is no shipping module available as you described. Chris Quote Link to comment Share on other sites More sharing options...
DrumrLC Posted June 22, 2011 Author Share Posted June 22, 2011 To get the functionality I needed I just added this code below line 64 in /includes/modules/shipping/table.php //Percentage Mod if ( strpos($shipping,"%") > 0 && MODULE_SHIPPING_TABLE_MODE == 'price') { $shipping = $order_total * round(($shipping/100),2); } //end Percentage Mod 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.