Can someone advise how to hide currency with ID 4 from currency selector.
This is the my code from ps_currencyselector.tpl.
Btw. I need the currency to be there, but I want to hide it from selector.
Thank you in advance
<div class="popup-content" style="min-width: 160px!important;">
<div class="row">
<div class="col-xs-12" style="width: 35%;">
<div class="currency-selector">
<span>{l s='Currency:' d='Shop.Theme.Global'}</span>
<ul class="link">
{foreach from=$currencies item=currency}
<li {if $currency.current} class="current" {/if}>
<a title="{$currency.name}" rel="nofollow" href="{$currency.url}" class="dropdown-item-currency">{$currency.iso_code}</a>
</li>
{/foreach}
</ul>
</div>
</div>
</div>
</div>