A Simple Commerce shipping module to handle free shipping for orders over a set monetory value.
This repository contains the code for the shipping gateway. While the code is open-source, it's important to remember that you'll need to purchase a license before using this addon in production. Licenses cost $5 and can be purchased from the Statamic Marketplace.
Installation
Install via the Control Panel or via composer
composer require phpsa/sc-free-shipping
Configuration
Update the config/simple-commerce.php
file to add as a shipping method:
'shipping' => [
'methods' => [
...
\Phpsa\ScFreeShipping\ShippingMethods\FreeShipping::class
],
],
Publish the Free Shipping configuration file, where you'll be able to update your shipping settings per site.
php artisan vendor:publish --provider="Phpsa\ScFreeShipping\ServiceProvider" --tag="config"
Security
If you discover any security related issues, please email [email protected] instead of using the issue tracker.