File tree 2 files changed +26
-0
lines changed
2 files changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -10,13 +10,22 @@ Magento 2 plugin for hide *Default Store Code* from URL.
10
10
11
11
## Installation
12
12
13
+ ### manual
14
+
13
15
1 . Download ZIP file and extract to ** app/code/Noon/HideDefaultStoreCode** . If this path not exists, please create under Magento2 root directory.
14
16
2 . Run the command in Magento2 root directory:
15
17
16
18
``` bash
17
19
php bin/magento setup:upgrade
18
20
```
19
21
22
+ ### composer
23
+
24
+ ```
25
+ composer config repositories.noon-hide-default-store-code git https://github.com/alex-79/magento2-hide-default-store-code-from-url.git
26
+ composer require noon/hide-default-store-code:dev-master
27
+ ```
28
+
20
29
## Configuration
21
30
22
31
* Stores > Configuration > General > Web > Url Options > Hide Default Store Code*
Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " noon/hide-default-store-code" ,
3
+ "description" : " Magento 2 module for hide Default Store Code" ,
4
+ "require" : {
5
+ "magento/magento-composer-installer" : " *"
6
+ },
7
+ "type" : " magento2-module" ,
8
+ "version" : " 1.0.0" ,
9
+ "autoload" : {
10
+ "files" : [
11
+ " registration.php"
12
+ ],
13
+ "psr-4" : {
14
+ "Noon\\ HideDefaultStoreCode\\ " : " "
15
+ }
16
+ }
17
+ }
You can’t perform that action at this time.
0 commit comments