Skip to content
This repository has been archived by the owner on Apr 26, 2023. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/2.28.1' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
ofrankowska committed Sep 1, 2022
2 parents bdbf897 + eea3818 commit be8dfb3
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ USE GITHUB ISSUE/PULL REQUEST NUMBERS, NOT INTERNAL ONE
### Updated

## [Released]
## [2.28.1] - 2022-09-01
### Fixed
- broken `Magento_Msrp/web/template/product/price/price_box.html` template (add missing quote)
## [2.28.0] - 2022-08-23
### Added
- some component variables (#567)
Expand Down
2 changes: 1 addition & 1 deletion Magento_Msrp/web/template/product/price/price_box.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
class="price-wrapper"
data-price-amount=""
data-price-type=""
html="getMsrpPriceUnsanitizedHtml($row())
html="getMsrpPriceUnsanitizedHtml($row())"
></span>
</span>
</span>
Expand Down
2 changes: 1 addition & 1 deletion docs/.vitepress/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ module.exports = {
editLinkText: 'Edit this page on GitHub',
lastUpdated: 'Last Updated',
nav: [
{ text: 'Guide', link: '/guide', activeMatch: '^/$|^/guide/' },
{ text: 'Guide', link: '/guide/', activeMatch: '^/$|^/guide/' },
{ text: "Contact", link: "https://snow.dog/contact" },
],
sidebar: {
Expand Down
4 changes: 2 additions & 2 deletions docs/guide/getting-started/alpaca-setup-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ The guide is adjusted for Theme Alpaca `>= 2.26.0`.
```
[Learn about Frontools here](https://github.com/SnowdogApps/magento2-frontools)
4. Run db queries to add to your database all Alpaca CMS block & content
[Copy db queries from here](https://github.com/SnowdogApps/create-alpaca-theme/blob/master/templates/database/queries.sql)
[Copy db queries from here](https://github.com/SnowdogApps/create-alpaca-theme/blob/master/src/database/queries.sql)

5. Upgrade application, DB data and schema (_[learn more here](https://devdocs.magento.com/guides/v2.4/install-gde/install/cli/install-cli-subcommands-db-upgr.html#instgde-cli-db-upgr)_):
```shell
Expand Down Expand Up @@ -294,7 +294,7 @@ You can create also `README.md` and `CHANGELOG.md` files.
```

5. Create Components
1. Copy (`vendor/snowdog/theme-frontend-alpaca/Snwodog_Components`) files:
1. Copy (`vendor/snowdog/theme-frontend-alpaca/Snowdog_Components`) files:
* `.browserslistrc`
* `.editorconfig`
* `.eslintignore`
Expand Down
2 changes: 1 addition & 1 deletion docs/guide/introduction/alpaca-packages.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Alpaca Theme is a part of [Alpaca Packages](https://github.com/SnowdogApps/magen
[snowdog/module-menu](https://github.com/SnowdogApps/magento2-menu)<br>

* Gives greater control over site navigation menus than native Magento 2 offers. Provides a drag-and-drop interface to build menus with links to categories, products, CMS pages, or custom URLs in the admin.
* Used for desktop, mobile and footer menus. Example content can be imported with [these database queries](https://github.com/SnowdogApps/create-alpaca-theme/blob/master/templates/database/queries.sql).
* Used for desktop, mobile and footer menus. Example content can be imported with [these database queries](https://github.com/SnowdogApps/create-alpaca-theme/blob/master/src/database/queries.sql).
* You can modify the look of menu items by including Alpaca CSS classes in menu nodes configuration.

For example: to create a column, add a menu node with type "wrapper" and classes `list__column list__column--hidden`.
Expand Down
2 changes: 1 addition & 1 deletion docs/guide/working-with-alpaca/main-content-elements.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

## Header and Footer
* To make them easy to customize and update we use [CMS blocks](https://docs.magento.com/user-guide/cms/blocks.html).
* Example content can be imported with [these database queries](https://github.com/SnowdogApps/create-alpaca-theme/blob/master/templates/database/queries.sql).
* Example content can be imported with [these database queries](https://github.com/SnowdogApps/create-alpaca-theme/blob/master/src/database/queries.sql).
* See default structure [here](https://github.com/SnowdogApps/magento2-alpaca-theme/tree/master/Magento_Theme/layout/default.xml).

## Menu
Expand Down

0 comments on commit be8dfb3

Please sign in to comment.