Skip to content

Commit

Permalink
STRF-3591 add return instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
bc-williamkwon committed Jun 26, 2019
1 parent 07e2140 commit d9de54c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
1 change: 1 addition & 0 deletions lang/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
6 changes: 5 additions & 1 deletion templates/pages/account/return-saved.html
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
{{#partial "page"}}
<div class="account">
{{> components/common/breadcrumbs breadcrumbs=breadcrumbs}}
<h2 class="page-heading">{{lang 'account.returns.heading' }}</h2>
<h2 class="page-heading">{{lang 'account.returns.heading'}}</h2>
{{> components/account/navigation account_page='returns'}}
<div class="account-row">
<p>
{{lang 'account.returns.successful'}}
</p>
{{#if instructions}}
<h3>{{lang 'account.returns.instructions'}}</h3>
<p>{{instructions}}</p>
{{/if}}
</div>
</div>
{{/partial}}
Expand Down

0 comments on commit d9de54c

Please sign in to comment.