diff --git a/CHANGELOG.md b/CHANGELOG.md index cbba0035ee..7c3af997e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ # Changelog ## Draft +- Add return instructions in return-saved.html [#1525](https://github.com/bigcommerce/cornerstone/pull/1525) - Fix conditional logic in share.html [#1522](https://github.com/bigcommerce/cornerstone/pull/1522) - Fix conditional logic in returns-list.html [#1512](https://github.com/bigcommerce/cornerstone/pull/1512) diff --git a/lang/en.json b/lang/en.json index 3249391c01..49506f8e61 100755 --- a/lang/en.json +++ b/lang/en.json @@ -391,6 +391,7 @@ }, "returns": { "heading": "Returns", + "instructions": "Return Instructions", "error_no_qty": "Please select one or more items to return.", "none": "You haven't placed any returns with us. When you do, they will appear on this page.", "new_return": "New Return", diff --git a/templates/pages/account/return-saved.html b/templates/pages/account/return-saved.html index 1f2b44be01..5c98922eea 100644 --- a/templates/pages/account/return-saved.html +++ b/templates/pages/account/return-saved.html @@ -1,12 +1,16 @@ {{#partial "page"}}
{{> components/common/breadcrumbs breadcrumbs=breadcrumbs}} -

{{lang 'account.returns.heading' }}

+

{{lang 'account.returns.heading'}}

{{> components/account/navigation account_page='returns'}}

{{lang 'account.returns.successful'}}

+ {{#if instructions}} +

{{lang 'account.returns.instructions'}}

+

{{instructions}}

+ {{/if}}
{{/partial}}