Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Different spacing in hyperlinks on footer links. #558

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
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
60 changes: 47 additions & 13 deletions modules/ps_customeraccountlinks/ps_customeraccountlinks.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -16,31 +16,65 @@
</div>
<ul class="footer__block__content footer__block__content-list collapse" id="footer_account_list">
{if $customer.is_logged}
<li><a href="{$urls.pages.identity}" title="{l s='Information' d='Shop.Theme.Customeraccount'}" rel="nofollow">{l s='Information' d='Shop.Theme.Customeraccount'}</a></li>
<li><a href="{$urls.pages.identity}" title="{l s='Information' d='Shop.Theme.Customeraccount'}"
rel="nofollow">
{l s='Information' d='Shop.Theme.Customeraccount'}
</a></li>
{if $customer.addresses|count}
<li><a href="{$urls.pages.addresses}" title="{l s='Addresses' d='Shop.Theme.Customeraccount'}" rel="nofollow">{l s='Addresses' d='Shop.Theme.Customeraccount'}</a></li>
<li><a href="{$urls.pages.addresses}" title="{l s='Addresses' d='Shop.Theme.Customeraccount'}"
rel="nofollow">
{l s='Addresses' d='Shop.Theme.Customeraccount'}
</a></li>
{else}
<li><a href="{$urls.pages.address}" title="{l s='Add first address' d='Shop.Theme.Customeraccount'}" rel="nofollow">{l s='Add first address' d='Shop.Theme.Customeraccount'}</a></li>
<li><a href="{$urls.pages.address}" title="{l s='Add first address' d='Shop.Theme.Customeraccount'}"
rel="nofollow">
{l s='Add first address' d='Shop.Theme.Customeraccount'}
</a></li>
{/if}
{if !$configuration.is_catalog}
<li><a href="{$urls.pages.history}" title="{l s='Orders' d='Shop.Theme.Customeraccount'}" rel="nofollow">{l s='Orders' d='Shop.Theme.Customeraccount'}</a></li>
<li><a href="{$urls.pages.history}" title="{l s='Orders' d='Shop.Theme.Customeraccount'}"
rel="nofollow">
{l s='Orders' d='Shop.Theme.Customeraccount'}
</a></li>
{/if}
{if !$configuration.is_catalog}
<li><a href="{$urls.pages.order_slip}" title="{l s='Credit slips' d='Shop.Theme.Customeraccount'}" rel="nofollow">{l s='Credit slips' d='Shop.Theme.Customeraccount'}</a></li>
<li><a href="{$urls.pages.order_slip}" title="{l s='Credit slips' d='Shop.Theme.Customeraccount'}"
rel="nofollow">
{l s='Credit slips' d='Shop.Theme.Customeraccount'}
</a></li>
{/if}
{if $configuration.voucher_enabled && !$configuration.is_catalog}
<li><a href="{$urls.pages.discount}" title="{l s='Vouchers' d='Shop.Theme.Customeraccount'}" rel="nofollow">{l s='Vouchers' d='Shop.Theme.Customeraccount'}</a></li>
<li><a href="{$urls.pages.discount}" title="{l s='Vouchers' d='Shop.Theme.Customeraccount'}"
rel="nofollow">
{l s='Vouchers' d='Shop.Theme.Customeraccount'}
</a></li>
{/if}
{if $configuration.return_enabled && !$configuration.is_catalog}
<li><a href="{$urls.pages.order_follow}" title="{l s='Merchandise returns' d='Shop.Theme.Customeraccount'}" rel="nofollow">{l s='Merchandise returns' d='Shop.Theme.Customeraccount'}</a></li>
<li><a href="{$urls.pages.order_follow}" title="{l s='Merchandise returns' d='Shop.Theme.Customeraccount'}"
rel="nofollow">
{l s='Merchandise returns' d='Shop.Theme.Customeraccount'}
</a></li>
{/if}
{hook h="displayMyAccountBlock"}
<li><a href="{$urls.actions.logout}" title="{l s='Log me out' d='Shop.Theme.Customeraccount'}" class="logout" rel="nofollow">{l s='Sign out' d='Shop.Theme.Actions'}</a></li>
<li><a href="{$urls.actions.logout}" title="{l s='Log me out' d='Shop.Theme.Customeraccount'}" class="logout"
rel="nofollow">
{l s='Sign out' d='Shop.Theme.Actions'}
</a></li>
{else}
<li><a href="{$urls.pages.guest_tracking}" title="{l s='Order tracking' d='Shop.Theme.Customeraccount'}" rel="nofollow">{l s='Order tracking' d='Shop.Theme.Customeraccount'}</a></li>
<li><a href="{$urls.pages.my_account}" title="{l s='Log in to your customer account' d='Shop.Theme.Customeraccount'}" rel="nofollow">{l s='Sign in' d='Shop.Theme.Actions'}</a></li>
<li><a href="{$urls.pages.register}" title="{l s='Create account' d='Shop.Theme.Customeraccount'}" rel="nofollow">{l s='Create account' d='Shop.Theme.Customeraccount'}</a></li>
<li><a href="{$urls.pages.guest_tracking}" title="{l s='Order tracking' d='Shop.Theme.Customeraccount'}"
rel="nofollow">
{l s='Order tracking' d='Shop.Theme.Customeraccount'}
</a></li>
<li><a href="{$urls.pages.my_account}"
title="{l s='Log in to your customer account' d='Shop.Theme.Customeraccount'}"
rel="nofollow">
{l s='Sign in' d='Shop.Theme.Actions'}
</a></li>
<li><a href="{$urls.pages.register}" title="{l s='Create account' d='Shop.Theme.Customeraccount'}"
rel="nofollow">
{l s='Create account' d='Shop.Theme.Customeraccount'}
</a></li>
{hook h="displayMyAccountBlock"}
{/if}
</ul>
</div>
</ul>
</div>
Loading