diff --git a/CHANGELOG.md b/CHANGELOG.md index d9394bd06a..5d48d89d48 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ ## Draft - Update @babel/polyfill to 7.4.4 [#1521](https://github.com/bigcommerce/cornerstone/pull/1521) - Add maxlength to text options [#1531](https://github.com/bigcommerce/cornerstone/pull/1531) +- Add return instructions in return-saved.html [#1525](https://github.com/bigcommerce/cornerstone/pull/1525) ## 3.5.1 (2019-06-24) - Fix conditional logic in share.html [#1522](https://github.com/bigcommerce/cornerstone/pull/1522) 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..27646354b1 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 return.instructions}} +

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

+

{{return.instructions}}

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