nicolasblancom / magento2-module-freeshippingbar
The FreeShippingBar module shows a banner with a 'free shipping from X' price notice and makes the calculations.
Installs: 2
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 1
Open Issues: 0
Language:JavaScript
Type:magento2-module
Requires
- php: ^8
- magento/framework: >=103
This package is auto-updated.
Last update: 2025-04-22 18:44:27 UTC
README
Adds a banner to the top bar with a "Free shipping from X" price notice
It makes the calculations based on cart items
Table of contents
Summary
This module adds a banner to the top bar block (above all content) with a "Free shipping from X" price notice.
It checks the items added to the cart and makes the calculations to change the message based on those:
- If no cart item added, it shows a generic message "Free shipping if order is above X" (configurable though XML file).
- If items added to the cart but cart price is below a threshold, it shows a "Only XX.XX left to get free shipping" message (configurable though XML file).
- If items added to the cart and price is above or equals the threshold, it shows "Now you have free shipping for this order!" message (configurable though XML file).
Why
Because it is a simple way to add a very visible promo banner that goes straight to the point.
It does not have complicated options and it is configurated through xml files.
It does not have any admin options for configurations.
Installation
composer require nicolasblancom/magento2-module-freeshippingbar
Usage
Just install it and you will start seeing the banner in the front.
Change messages
In view/frontend/layout/default.xml
file, you will see three variables:
- messageDefault: it's the message when no items in cart, shows by default.
- messageLeft: it's the message when there are items in cart, but you have not reached the threshold yet.
- messageFree: it's the message for free shipping, when you already reached the threshold.
If you want to change those messages just extend this xml in your theme by copying it to:
<your-vendor>/<your-theme>/layout/default.xml
Change threshold
Similar to messages variables. In view/frontend/layout/default.xml
file you will see:
<item name="threshold" xsi:type="number">100</item>
If you want to change the threshold variable just extend this xml in your theme by copying it to:
<your-vendor>/<your-theme>/layout/default.xml