Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Added
- Add fold to the home.

## [3.15.1] - 2019-09-23

Expand Down
18 changes: 18 additions & 0 deletions store/blocks/home/home.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
* For example, `flex-layout.row#deals` is defined in the `deals.json` file. */
"flex-layout.row#deals",
"shelf#home",
"__fold__",
"info-card#home",
"shelf#home2",
"rich-text#question",
"rich-text#link",
"newsletter"
Expand Down Expand Up @@ -48,6 +50,22 @@
}
},

"shelf#home2": {
"blocks": ["product-summary.shelf"],
"props": {
"orderBy": "OrderByReleaseDateDESC",
"paginationDotsVisibility": "desktopOnly",
"productList": {
"maxItems": 10,
"itemsPerPage": 5,
"minItemsPerPage": 1.5,
"scroll": "BY_PAGE",
"arrows": true,
"titleText": "Top sellers"
}
}
},

"product-summary#home": {
"props": {
"isOneClickBuy": false,
Expand Down