-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit bfa718b
Showing
4 changed files
with
110 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
# Ecomteck Megamenu Extension | ||
OVERVIEW | ||
|
||
With 75% faster than default checkout, Magento 2 one page checkout speeds up the whole checkout process thus considerably boost your sales & revenue. By using Google suggestion and displaying all information on only one page, Magento 2 One step checkout automates all shopping actions! | ||
|
||
## Prominent features: | ||
|
||
- Google address & customers' account auto-suggestion | ||
- Optimized ONE step checkout page only | ||
- Optimized for mobile checkout | ||
- Neat and clean interface | ||
- Easy to set desired delivery date & order comment | ||
- Support the most popular shipping & payment method | ||
- Instantly apply coupon and gift options | ||
- Inspiring gift items & Wonderful gift order | ||
- Powerful social login support | ||
- 1-Click to edit and remove product options | ||
- 1-Click changing billing section position | ||
- Always display the “Place order” button | ||
- User- friendly configuration, Support various skins | ||
- Custom text, icon & disable redundant fields on admin easily | ||
- Auto Ajax update shopping cart product quantity | ||
- Convenient newsletter setting | ||
- Compatible with all custom Magento 2 template | ||
- Smoothly work with 3rd-party extension | ||
- Product recommendations: Store Pickup, Gift Card | ||
|
||
|
||
## 1. Documentation | ||
|
||
- [Installation guide](https://ecomteck.com/magento-2-tutorials/install-magento-2-extension/) | ||
- [User Guide](https://ecomteck.com/docs/one-step-checkout/) | ||
- [Download from our Live site](https://ecomteck.com/downloads/magento-2-one-step-checkout/) | ||
- [Get Free Support](https://ecomteck.com/ask-question/) | ||
- [Get Custom Work](https://ecomteck.com/contact) | ||
|
||
## 2. How to install | ||
|
||
|
||
## ✓ Install via composer (recommend) | ||
Run the following command in Magento 2 root folder: | ||
|
||
``` | ||
composer require ecomteck/module-megamenu | ||
php bin/magento setup:upgrade | ||
php bin/magento setup:static-content:deploy -f | ||
php bin/magento cache:clean | ||
``` | ||
|
||
## Conclusion | ||
|
||
Ecomteck One Step Checkout extension is an extension working on Magento 2 Ecosystem and simplifying the checkout process in one page only. One page checkout solution is considered the best checkout at the present time. | ||
|
||
Ecomteck One step checkout extension which is designed for Magento 2 reduces checkout process to a single step – one page. From this advantage, Ecomteck One step checkout extension helps reduce customer’s cart abandonment and increase conversion rate. | ||
|
||
**People also search:** | ||
- magento 2 megamanu | ||
- magento 2 megamenu extension | ||
- magento 2 mega menu module | ||
- magento 2 megamenu free | ||
- magento 2 megamenu github | ||
- magento 2 mega menu extension | ||
- magento 2 mega menu | ||
- magento 2 mega menu extension free | ||
- megamenu for magento 2 | ||
- mega menu for magento 2 | ||
- mega menu for magento 2 | ||
- magento 2 megamenu tutorial | ||
- magento 2 mega menu | ||
- megamenu for magento 2 | ||
- magento 2 mega menu free | ||
- megamenu magento 2 extension free | ||
- ecomteck megamenu for magento 2 | ||
|
||
|
||
**Other free extension on Github** | ||
- [Magento 2 Delivery Date](https://github.com/ecomteck/module-delivery-date) | ||
- [Magento 2 Order Comments](https://github.com/ecomteck/magento2-order-comments) | ||
- [Magento 2 Social Login](https://github.com/ecomteck/magento-2-social-login) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"name": "ecomteck/module-megamenu", | ||
"description": "Provides powerful megamen menu editor to replace category based menus in Magento 2", | ||
"license": "MIT", | ||
"type": "magento2-module", | ||
"authors": [ | ||
{ | ||
"name": "Ecomteck", | ||
"email": "[email protected]", | ||
"role": "Magento 2 Extension Solutions" | ||
} | ||
], | ||
"autoload": { | ||
"files": [ | ||
"registration.php" | ||
], | ||
"psr-4": { | ||
"Ecomteck\\Megamenu\\": "" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<?xml version="1.0"?> | ||
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd"> | ||
<module name="Ecomteck_Megamenu" setup_version="0.2.3"/> | ||
</config> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?php | ||
\Magento\Framework\Component\ComponentRegistrar::register( | ||
\Magento\Framework\Component\ComponentRegistrar::MODULE, | ||
'Ecomteck_Megamenu', | ||
__DIR__ | ||
); |