Jump to content

Currency module variabele


Recommended Posts

First check:

themes/your_theme/modules/blockcurrencies/blockcurrencies.tpl

if this files does not exist then you will find it here

modules/blockcurrencies/blockcurrencies.tpl

 

the .tpl file will  display the curriences using the variables passed from Note:blockcurrencies/blockcurrencies.php

 

the information is pulled from

12.27.2013-12.54.png
http://screencast.com/t/ivCtMW3OE

Link to comment
Share on other sites

And example from the module:

{foreach from=$currencies key=k item=f_currency}
				<li {if $cookie->id_currency == $f_currency.id_currency}class="selected"{/if}>
					<a href="javascript:setCurrency({$f_currency.id_currency});" title="{$f_currency.name}" rel="nofollow">{$f_currency.sign}</a>
				</li>
			{/foreach}
Link to comment
Share on other sites

×
×
  • Create New...