https://github.com/maniyatech/magento2-customshippingrate
ManiyaTech CustomShippingRate is a powerful Magento 2 extension that lets you add and manage custom flat-rate shipping methods for both admin orders and customer checkout. Simplify your shipping strategy, control costs, and offer a better experience to your buyers.
https://github.com/maniyatech/magento2-customshippingrate
custom-shipping magento2 magento2-extension magento2-module shipping shipping-method shipping-rates
Last synced: 6 months ago
JSON representation
ManiyaTech CustomShippingRate is a powerful Magento 2 extension that lets you add and manage custom flat-rate shipping methods for both admin orders and customer checkout. Simplify your shipping strategy, control costs, and offer a better experience to your buyers.
- Host: GitHub
- URL: https://github.com/maniyatech/magento2-customshippingrate
- Owner: maniyatech
- Created: 2025-06-02T10:32:28.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-07-03T06:59:40.000Z (about 1 year ago)
- Last Synced: 2025-08-03T12:05:28.440Z (11 months ago)
- Topics: custom-shipping, magento2, magento2-extension, magento2-module, shipping, shipping-method, shipping-rates
- Language: PHP
- Homepage:
- Size: 18.6 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ManiyaTech CustomShippingRate module for Magento 2
ManiyaTech CustomShippingRate is a powerful Magento 2 extension that lets you add and manage custom flat-rate shipping methods for both admin orders and customer checkout. Simplify your shipping strategy, control costs, and offer a better experience to your buyers.
Whether you're shipping via USPS, UPS, FedEx, DHL, or any other carrier, this extension gives you full control over your shipping rates—no need to rely solely on predefined methods or complex table rates.
## Key Features
-
Admin Side Support: Easily apply shipping rates when creating orders in the admin panel. -
Frontend Checkout: Enable or disable shipping method visibility on the storefront checkout page. -
Country Restrictions: Limit shipping availability to specific countries. -
Custom Shipping Types: Define delivery types like standard, express, pickup, etc. -
Error Messaging: Show custom messages when shipping is not available. -
Sort Order Configuration: Set the display order of this method among others.
## How to install ManiyaTech_CustomShippingRate module
### Composer Installation
Run the following command in Magento 2 root directory to install ManiyaTech_CustomShippingRate module via composer.
#### Install
```
composer require maniyatech/magento2-customshippingrate
php bin/magento setup:upgrade
php bin/magento setup:static-content:deploy -f
```
#### Update
```
composer update maniyatech/magento2-customshippingrate
php bin/magento setup:upgrade
php bin/magento setup:static-content:deploy -f
```
Run below command if your store is in the production mode:
```
php bin/magento setup:di:compile
```
### Manual Installation
If you prefer to install this module manually, kindly follow the steps described below -
- Download the latest version [here](https://github.com/maniyatech/magento2-customshippingrate/archive/refs/heads/main.zip)
- Create a folder path like this `app/code/ManiyaTech/CustomShippingRate` and extract the `main.zip` file into it.
- Navigate to Magento root directory and execute the below commands.
```
php bin/magento setup:upgrade
php bin/magento setup:static-content:deploy -f
```