Skip to content

Commit

Permalink
Merge pull request #2376 from bc-shawnwang/CHECKOUT-7557
Browse files Browse the repository at this point in the history
feat(checkout): CHECKOUT-7557 display fees on cart page
  • Loading branch information
huntario authored Jul 19, 2023
2 parents 6f5aa92 + 9e1c8f3 commit cdc3776
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Added ACH payment method section to My Account -> Payment Methods page [#2362](https://github.com/bigcommerce/cornerstone/pull/2362)
- Remove data_tag_enabled check from everywhere [#2369][https://github.com/bigcommerce/cornerstone/pull/2369]
- Fix add product to cart on iphone x (iphone version 11) [#2370][https://github.com/bigcommerce/cornerstone/pull/2370]
- Display fees on cart page [#2360](https://github.com/bigcommerce/cornerstone/pull/2376)

## 6.11.0 (05-24-2023)
- Reverted fix for sold-out badge appearance [#2354](https://github.com/bigcommerce/cornerstone/pull/2354)
Expand Down
12 changes: 12 additions & 0 deletions templates/components/cart/totals.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,18 @@
</div>
</li>
{{/if}}
{{#if cart.fees}}
{{#each cart.fees}}
<li class="cart-total">
<div class="cart-total-label">
<strong>{{display_name}}:</strong>
</div>
<div class="cart-total-value">
<span>{{cost.formatted}}</span>
</div>
</li>
{{/each}}
{{/if}}
{{#if cart.shipping_handling.show_estimator}}
<li class="cart-total">
<div class="cart-total-label">
Expand Down

0 comments on commit cdc3776

Please sign in to comment.