Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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
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
- Render per-picklist-option backorder prompts (backordered quantity and backorder message) on the account order details page, mirroring the PDP bundle backorder display
- Refine backorder layout and colors on the account order details page [#2677](https://github.com/bigcommerce/cornerstone/pull/2677)
- Make the cart Shipping row label span the full width of the totals row so the shipping expectation prompt is no longer constrained to the narrow label column
- Respect `unlimited_backorder` on PDP so the backorder quantity message and availability prompt render, and the Add to Cart quantity cap is lifted for products with unlimited backorder
Expand Down
10 changes: 9 additions & 1 deletion templates/components/account/order-contents.html
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,15 @@ <h6>{{brand.name}}</h6>
<dl class="definitionList">
{{#each options}}
<dt class="definitionList-key">{{name}}:</dt>
<dd class="definitionList-value">{{> components/common/product-options}}</dd>
<dd class="definitionList-value">
{{> components/common/product-options}}
{{#if quantity_backordered '>' 0}}
<p class="account-product-backorder-prompts">{{lang 'products.quantity_backordered' quantity=quantity_backordered}}</p>
{{#if backorder_message}}
<p class="account-product-backorder-prompts">{{backorder_message}}</p>
{{/if}}
Comment thread
cursor[bot] marked this conversation as resolved.
Outdated
{{/if}}
</dd>
{{/each}}
</dl>
{{/if}}
Expand Down
Loading