Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(payment): PI-2771 Rename region for product item. #2531

Merged
merged 1 commit into from
Jan 4, 2025
Merged
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
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Add a section to display the payment promotion widget in the drop-down of the cart preview [#2523](https://github.com/bigcommerce/cornerstone/pull/2523)
- Add support Node 20 [#2519](https://github.com/bigcommerce/cornerstone/pull/2519)
- Use fetch when updating variants in cart [#2521](https://github.com/bigcommerce/cornerstone/pull/2521)
- Add a region to display the payment promotion widget on the category pages. [#2530](https://github.com/bigcommerce/cornerstone/pull/2530)
- Add a region to display the payment promotion widget on the category pages [#2530](https://github.com/bigcommerce/cornerstone/pull/2530)
- Rename the region to display the payment promotion widget on the category pages [#2531](https://github.com/bigcommerce/cornerstone/pull/2531)

## 6.15.0 (10-18-2024)
- Cornerstone changes to support inc/ex tax price lists on PDP [#2486](https://github.com/bigcommerce/cornerstone/pull/2486)
Expand Down
2 changes: 1 addition & 1 deletion templates/components/products/card.html
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ <h3 class="card-title">
{{> components/common/login-for-pricing}}
{{/or}}
</div>
{{{region name="product_below_price"}}}
{{{region name="product_item_below_price"}}}
{{> components/products/bulk-discount-rates}}
</div>
</article>
2 changes: 1 addition & 1 deletion templates/components/products/list-item.html
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ <h4 class="listItem-title">
{{#or customer (unless settings.hide_price_from_guests)}}
{{#if price}}
<div class="listItem-price">{{> components/products/price price=price}}</div>
{{{region name="product_below_price"}}}
{{{region name="product_item_below_price"}}}
{{/if}}
{{else}}
{{> components/common/login-for-pricing}}
Expand Down
Loading