Statamic Commerce Free Shipping Plugin

Statami v3 Packagist Sponsor Sponsor

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.

Features

  • Can be set to only be enabled after a minimum order value is in the cart
  • Can be disabled if order value exceeds a specific value
  • can be configured for different values on different sites when using multi-site

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"