https://github.com/outeredge/edge-magento-module-multipledelivery
https://github.com/outeredge/edge-magento-module-multipledelivery
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/outeredge/edge-magento-module-multipledelivery
- Owner: outeredge
- License: mit
- Created: 2015-04-09T11:07:24.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2017-06-22T10:01:22.000Z (about 9 years ago)
- Last Synced: 2025-01-24T08:43:22.686Z (over 1 year ago)
- Language: PHP
- Size: 3.91 KB
- Stars: 0
- Watchers: 8
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
magento-multipledelivery-module
===============================
Multiple Delivery Methods module for Magento
Adds a delivery method in Magento configuration which allows the adding of multiple delivery methods using a json encoded string.
**Available Options**
- enabled (boolean)
- title (string)
- description (string)
- price (float)
- cost (float)
- postcodes (array)
- postcode_condition (allow|restrict)
**An example setup**
```
{
"nextday": {
"enabled": true,
"title": "Next Day",
"description": "Next day delivery",
"price": 5,
"postcodes": ["PO20","PO19"],
"postcode_condition": "restrict"
},
"nextdaybefore10": {
"enabled": true,
"title": "Next Day (before 10am)",
"description": "Receive your items before 10am",
"price": 10,
"postcodes": ["PO20","PO19"],
"postcode_condition": "allow"
}
}
```