Tuesday, 3 December 2013

Simple Opencart tutorial - shipping rate based on percentage of order

I was looking all over the internet for a free module to allow me set the shipping cost by a percentage if the order total was within a certain range; but to no avail :(
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, then, for an order total of £158.00, the shipping cost will be £15.80.
This is how I did it:

First of all,
  1. You have to download this free module -> Total Based Shipping (http://www.opencart.com/index.php?route=extension/extension/info&extension_id=4029 )
  2. Follow the instructions on how to install the module (it's really easy)
  3. 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.
  4. 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;
      }
  5. 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

Saturday, 16 November 2013

How to quickly resize your images online with PicResize

Want to resize your images? Good, lets go...

PicResize.com is a very cool and effective website that helps you do resize your images easily.

I find it very useful when working on websites.

How?

Go to PicResize.com then:

  • Upload the image you want to resize


  • Choose how you want to resize your picture. You can even input custom dimensions which I find most useful.



  • Finally, just save as 'jpg' 'png', 'gif' or 'bmp' and that's it! (Note if you choose 'JPG', you have the option to choose the JPG quality; I always choose 'Best Quality'. Up to you.)

That was snappy! Hope this helped. Will try and post more snappy tutorials as time goes on.
Have a nice day :)