Skip to content

Commit

Permalink
⏫ Forwardport of #12308 to 2.3-develop branch
Browse files Browse the repository at this point in the history
Applied pull request patch https://github.com/magento/magento2/pull/12308.patch (created by @RomaKis) based on commit(s):
  1. 24eee64
  2. ec33cc5

Fixed GitHub Issues in 2.3-develop branch:
  - #12261: Order confirmation email contains non functioning links (reported by @bondimedical3)
  • Loading branch information
magento-engcom-team committed Jan 24, 2018
1 parent 8e77e2f commit b754973
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions app/design/frontend/Magento/luma/Magento_Email/email/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,16 @@
<table>
<tr>
<td>
<p><a href="#">{{trans "About Us"}}</a></p>
<p><a href="#">{{trans "Customer Service"}}</a></p>
{{depend url_about_us}}
<p>
{{trans '<a href=%url_about_us>About Us</a>' url_about_us=$url_about_us |raw}}
</p>
{{/depend}}
{{depend url_customer_service}}
<p>
{{trans '<a href=url_customer_service>Customer Service</a>' url_customer_service=$url_customer_service |raw}}
</p>
{{/depend}}
</td>
<td>
{{depend store_phone}}
Expand Down

0 comments on commit b754973

Please sign in to comment.