@@ -48,27 +48,28 @@ To install a theme manually:
48
48
``` bash
49
49
cp -r ExampleTheme < Magento root dir> /app/design/frontend
50
50
```
51
-
51
+
52
52
1 . Confirm the theme copied to the correct place.
53
53
54
- * Storefront theme: ` ls <Magento root dir>/app/design/frontend `
55
- * Admin theme: ` ls <Magento root dir>/app/design/adminhtml `
54
+ * Storefront theme: ` ls <Magento root dir>/app/design/frontend `
55
+ * Admin theme: ` ls <Magento root dir>/app/design/adminhtml `
56
+
57
+ A sample follows:
56
58
57
- A sample follows:
59
+ ExampleTheme Magento
58
60
59
- ExampleTheme Magento
60
61
1 . Add and commit files:
61
62
62
63
``` bash
63
64
git add -A && git commit -m " Add theme"
64
65
```
65
-
66
+
66
67
1 . Push the files to your branch:
67
68
68
69
``` bash
69
70
git push origin < branch name>
70
71
```
71
-
72
+
72
73
1 . Wait for deployment to complete.
73
74
1 . Log in to the Magento Admin.
74
75
1 . Click ** Content** > Design > ** Themes** .
@@ -81,21 +82,32 @@ Installing a theme using Composer is the same as installing any other extension
81
82
82
83
To summarize the procedure:
83
84
84
- 1 . Purchase the theme from Magento Marketplace.
85
- 2 . Get the theme's Composer name.
86
- 3 . Change to your Magento root directory and enter the command:
85
+ 1 . Purchase the theme from Magento Marketplace.
86
+ 1 . Get the theme's Composer name.
87
+ 1 . Change to your Magento root directory and enter the command:
88
+
89
+ ``` bash
90
+ composer require < vendor> /< name> :< version>
91
+ ```
92
+
93
+ For example,
94
+
95
+ ``` bash
96
+ composer require zero1/theme-fashionista-theme:1.0.0
97
+ ```
87
98
88
- composer require <vendor>/<name>:<version>
99
+ 1 . Wait for dependencies to update.
100
+ 1 . Enter the following commands:
89
101
90
- For example,
102
+ ``` bash
103
+ git add -A && git commit -m " Add theme"
104
+ ```
91
105
92
- composer require zero1/theme-fashionista-theme:1.0.0
93
- 4 . Wait for dependencies to update.
94
- 5 . Enter the following commands:
106
+ ``` bash
107
+ git push origin < branch name >
108
+ ```
95
109
96
- git add -A && git commit -m "Add theme"
97
- git push origin <branch name>
98
- 5 . Log in to the Magento Admin.
99
- 6 . Click ** Content** > Design > ** Themes** .
110
+ 1 . Log in to the Magento Admin.
111
+ 1 . Click ** Content** > Design > ** Themes** .
100
112
101
- The theme displays in the right pane.
113
+ The theme displays in the right pane.
0 commit comments