Hello,
I have found not finished part of template.
Select currency box.
Look at the screenshot.
9 answers
Hi noxxitbaby,
Please give us the URL of your site so that we can provide additional css code for the "Select Your Currency" Block
The url: http://www.automotodeco.com
Hi noxxitbaby,
It seem that the currency block is not enalbe with default installation of Magento. I wil get the dev team updated to the package and keep you informed at this thread.
Hey,
About what time interval we are talking about?
And you can see currency bar here:
http://demo.magentocommerce.com/elec…igital-cameras
I think it’s kinda important for most shops.
Certainly you will get an update tomorrow morning (which is about 8-10 hours) because it is now 2:15 AM here
I guess it’s perfect. Thanks. Will be waiting for notice.
Hi,
To solve this issue, please open app\design\frontend\default\defaulttemplate\direc tory\currency.phtml file, at about line 35, find following code:
PHP Code:
<div class="box currency-switcher">
<div class="head">
<h4><?php echo $this->__('Select Your Currency') ?></h4>
</div>
<select name="currency" onchange="changeCurrency(this)">
<?php foreach ($this->getCurrencies() as $_code => $_name): ?>
<option value="<?php echo $_code ?>"<?php if($_code==$this->getCurrentCurrencyCode()): ?> selected="selected"<?php endif; ?>>
<?php echo $_name ?> - <?php echo $_code ?>
</option>
<?php endforeach; ?>
</select>
</div>
and change to:
PHP Code:
<div class="box base-mini mini-currency-switcher">
<div class="head">
<h4><?php echo $this->__('Select Your Currency') ?></h4>
</div>
<div class="content">
<select name="currency" onchange="changeCurrency(this)">
<?php foreach ($this->getCurrencies() as $_code => $_name): ?>
<option value="<?php echo $_code ?>"<?php if($_code==$this->getCurrentCurrencyCode()): ?> selected="selected"<?php endif; ?>>
<?php echo $_name ?> - <?php echo $_code ?>
</option>
<?php endforeach; ?>
</select>
</div>
</div>
Hope it helps.
Hi noxxitbaby,
I am sorry.
Please downloat my attachment file and extract it.
+ directory folder: copy to app\design\frontend\default\jm_puritytemplate folder.
As always. Working. Thanks.
This question is now closed