Skip to content
This repository has been archived by the owner on Nov 19, 2024. It is now read-only.

Commit

Permalink
#5245: Hard tabs. Folder: guides/cloud
Browse files Browse the repository at this point in the history
  • Loading branch information
atwixfirster committed Sep 25, 2019
1 parent 19e2353 commit cfc3c7f
Show file tree
Hide file tree
Showing 7 changed files with 211 additions and 170 deletions.
52 changes: 32 additions & 20 deletions guides/v2.2/cloud/howtos/custom-theme.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,27 +48,28 @@ To install a theme manually:
```bash
cp -r ExampleTheme <Magento root dir>/app/design/frontend
```

1. Confirm the theme copied to the correct place.

* Storefront theme: `ls <Magento root dir>/app/design/frontend`
* Admin theme: `ls <Magento root dir>/app/design/adminhtml`
* Storefront theme: `ls <Magento root dir>/app/design/frontend`
* Admin theme: `ls <Magento root dir>/app/design/adminhtml`

A sample follows:

A sample follows:
ExampleTheme Magento

ExampleTheme Magento
1. Add and commit files:

```bash
git add -A && git commit -m "Add theme"
```

1. Push the files to your branch:

```bash
git push origin <branch name>
```

1. Wait for deployment to complete.
1. Log in to the Magento Admin.
1. Click **Content** > Design > **Themes**.
Expand All @@ -81,21 +82,32 @@ Installing a theme using Composer is the same as installing any other extension

To summarize the procedure:

1. Purchase the theme from Magento Marketplace.
2. Get the theme's Composer name.
3. Change to your Magento root directory and enter the command:
1. Purchase the theme from Magento Marketplace.
1. Get the theme's Composer name.
1. Change to your Magento root directory and enter the command:

```bash
composer require <vendor>/<name>:<version>
```

For example,

```bash
composer require zero1/theme-fashionista-theme:1.0.0
```

composer require <vendor>/<name>:<version>
1. Wait for dependencies to update.
1. Enter the following commands:

For example,
```bash
git add -A && git commit -m "Add theme"
```

composer require zero1/theme-fashionista-theme:1.0.0
4. Wait for dependencies to update.
5. Enter the following commands:
```bash
git push origin <branch name>
```

git add -A && git commit -m "Add theme"
git push origin <branch name>
5. Log in to the Magento Admin.
6. Click **Content** > Design > **Themes**.
1. Log in to the Magento Admin.
1. Click **Content** > Design > **Themes**.

The theme displays in the right pane.
The theme displays in the right pane.
Loading

0 comments on commit cfc3c7f

Please sign in to comment.