Skip to content

Commit

Permalink
fix(storefront): BCTHEME-1765 With Product Filtering enabled widgets …
Browse files Browse the repository at this point in the history
…on category page disappear after navigating using pagination
  • Loading branch information
VladDlogush committed Feb 2, 2024
1 parent 481bf05 commit 96ef06a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Draft
- With Product Filtering enabled widgets on category page disappear after navigating using pagination [#2425](https://github.com/bigcommerce/cornerstone/pull/2425)
- Anchor links on category pages are not working when product filtering is enabled [#2415](https://github.com/bigcommerce/cornerstone/pull/2415)
- Dispatch an event on productOptionsChanged [#2400](https://github.com/bigcommerce/cornerstone/pull/2400)
- Check lang helpers usage and existence of key in translation file [#2403](https://github.com/bigcommerce/cornerstone/pull/2403)
Expand Down
6 changes: 6 additions & 0 deletions assets/scss/layouts/body/_body.scss
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,12 @@
@include grid-column(12);
}

.page-region {
@include grid-column(12);
width: 75%;
float: right;
}

.page-content--centered {

@include breakpoint("medium") {
Expand Down
3 changes: 3 additions & 0 deletions templates/pages/category.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@ <h1 class="page-heading">{{category.name}}</h1>

<div class="page-content" id="product-listing-container">
{{> components/category/product-listing}}
</div>

<div class="page-region">
{{{region name="category_below_content"}}}
</div>
</div>
Expand Down

0 comments on commit 96ef06a

Please sign in to comment.