Login
Register

VirtueMart

WooCommerce

Others

Docs

Support

Blog

About

Shipping by Rules for VirtueMart

IMPORTANT ANNOUNCEMENT: Plugin development ceased, all plugins made available freely (GPL)

With great sadness we have to announce that we are ceasing development of all our VirtueMart, WooCommerce and Joomla plugins. Effective immediately, all our plugins -- even those that were paid downloads -- are made available for free from our homepage (GPL license still applies), but we cannot and will not provide any support anymore.

It has been a great pleasure to be part of the thriving development communities of VirtueMart as well as WooCommerce. However, during the last year it became painstakingly clear that in addition to a full-time job, a young family and several other time-consuming hobbies at professional level (like being a professional singer) the plugin development and the support that it requires is not sustainable and is taking its toll. It has been an honor, but it is now time to say good bye!

×

Notice

The forum is in read only mode.
Welcome, Guest
Username: Password: Remember me
  • Page:
  • 1

TOPIC:

Simply shipping rule 20 Jan 2018 16:55 #1

  • peaceandlove
  • peaceandlove's Avatar Topic Author
I want to create a simply rule, its based on number of proudcts i check documents but little confused,

What i want simply shipping for usa

$5 per item , if order above $100 its free.

I am confuse on how t add $5 per item

Simply shipping rule 28 Jan 2018 19:15 #2

Dear PeaceAndLove,
Do you use the free ("basic") version or the paid ("advanced") version of the plugin?

In the advanced version the $5 per item can be implemented with a simply function:
Amount>=100; Shipping=0
Amount<100; Shipping=5*Articles

In the free version you cannot use 5*Articles, so you have to handle the case of 1 product, of 2 product, etc. separately:
Amount>=100; Shipping=0
Amount<100; Articles == 1; Shipping=5
Amount<100; Articles == 2; Shipping=10
Amount<100; Articles == 3; Shipping=15
Amount<100; Articles == 4; Shipping=20
Amount<100; Articles == 5; Shipping=25
Amount<100; Articles == 6; Shipping=30
Amount<100; Articles == 7; Shipping=35
Amount<100; Articles == 8; Shipping=40
Amount<100; Articles == 9; Shipping=45
Amount<100; Articles == 10; Shipping=50
Amount<100; Articles == 11; Shipping=55
Amount<100; Articles == 12; Shipping=60
Amount<100; Articles == 13; Shipping=65
Amount<100; Articles == 14; Shipping=70
Amount<100; Articles == 15; Shipping=75
Amount<100; Articles == 16; Shipping=80
Amount<100; Articles == 17; Shipping=85
Amount<100; Articles == 18; Shipping=90
Amount<100; Articles == 19; Shipping=95
Amount<100; Articles == 20; Shipping=100
Amount<100; Articles > 20; Shipping=105
As you can see, you'll have to stop sooner or later (in my example 21 and more articles are not handled any more).

Best regards,
Reinhold
  • Page:
  • 1