So I decided to do it myself.
Here's what I needed...
So for example:
- If we set the shipping cost to be 10% of the order total, for an order total of £158.00, the shipping cost will be £15.80.
First of all,
- You have to download this free module -> Total Based Shipping (http://www.opencart.com/index.php?route=extension/extension/info&extension_id=4029 )
- Follow the instructions on how to install the module (it's really easy)
- When you are done with that, navigate to catalog\model\shipping\standard_cost.php
- NB: the standard_cost.php file will be a file from the module you just downloaded.
- Scroll to where you see, it should be around line 38 - 50
if ($cart_subtotal <= $data[0]) {
if (isset($data[1])) {
$cost = $data[1];}
break;
}- Then insert this
elseif ($cart_subtotal <= 200.00 ){
$cost = $cart_subtotal*0.1;
break; }
Simple! You just needed to add 3 lines of code.
The Module you downloaded in step 1 allows you to set specific shipping cost based on the order total. So we just included that code to calculate shipping cost based on a set percentage (in the above example, it's 10%. To calculate for a different percentage, just change the '0.1' in the code to whatever you want).
This was a quick fix and unfortunately, it's hard-coded. I'll try and improve on it so it can be modified from Opencart's back-end and update this post.
Please feel free to make suggestions or comments below. Thanks