Shipping free when cart value is bigger than X #39
FR6
started this conversation in
Feature Requests
Replies: 2 comments
-
|
It's not currently possible, although, it's on my list for post-launch. 👍 |
Beta Was this translation helpful? Give feedback.
0 replies
-
In your shipping method, you can add something like if ($cart->subTotal() >= 20000) {
$options->prepend(
ShippingOption::make($this)
->name(__('Free Shipping'))
->price(0)
);
}To display a free shipping option for orders over $200, you can even wrap it in an if statement to only show the free shipping when the user's cart reaches the set amount, instead of presenting it as an additional option. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Is there a way to apply a flat rate shipping but make it free when the total amount of the cart is higher than X$?
Beta Was this translation helpful? Give feedback.
All reactions