Sito Lab Posted August 20, 2013 Share Posted August 20, 2013 (edited) I am here again to ask for your help, sorry for my English, so I searched, but I can not find anything about what I want to do, or mistake the search criteria, so excuse me if this topic has already been dealt and I have not been able to find it. ps I would like to use 1.5.4.1 and remove the curtain of choice from the currency bloc, in order to have the currency euro and dollar on a single line with various symbols. I hope I was clear enough on what I would do. sorry again for my bad English. Edited August 22, 2013 by lui1969 (see edit history) Link to comment Share on other sites More sharing options...
Sito Lab Posted August 21, 2013 Author Share Posted August 21, 2013 perhaps I expressed myself badly with my English? Link to comment Share on other sites More sharing options...
Sito Lab Posted August 21, 2013 Author Share Posted August 21, 2013 the closure of this topic, with the phrase, "not solved, thanks all the same," is not an offensive gesture toward none of this wonderful forum, and that failing to find a solution, in my opinion is not needed. We are many wonderful people to ask for support as Vekia, Jiten Rash and many others who do not remember the name. sorry for my bad English. thanks Link to comment Share on other sites More sharing options...
stottycabanas Posted August 21, 2013 Share Posted August 21, 2013 I believe Vekia helped you in the past to show the language symbols in a row, not in a dropdown. This thread: http://www.prestashop.com/forums/topic/267184-solvedremove-scrolling-block-language Maybe you could apply a similar change to blockcurrencies.tpl to make the currencies display in a row? PS Lecce is a beautiful town! Link to comment Share on other sites More sharing options...
Sito Lab Posted August 21, 2013 Author Share Posted August 21, 2013 thanks friend, my city thanks you very much for your appreciation, and I am very happy that you like it. you're always welcome. I tried to do the same thing as in the post you reported, but does not work with the currency beautiful your website in 2 columns Link to comment Share on other sites More sharing options...
vekia Posted August 21, 2013 Share Posted August 21, 2013 here is the code for currencies: <!-- Block currencies module --> <script type="text/javascript"> $(document).ready(function () { $("#setCurrency").mouseover(function(){ $(this).addClass("countries_hover"); $(".currencies_ul").addClass("currencies_ul_hover"); }); $("#setCurrency").mouseout(function(){ $(this).removeClass("countries_hover"); $(".currencies_ul").removeClass("currencies_ul_hover"); }); $('ul#first-currencies li:not(.selected)').css('opacity', 0.3); $('ul#first-currencies li:not(.selected)').hover(function(){ $(this).css('opacity', 1); }, function(){ $(this).css('opacity', 0.3); }); }); </script> <div id="currencies_block_top"> <form id="setCurrency" action="{$request_uri}" method="post"> <input type="hidden" name="id_currency" id="id_currency" value=""/> <input type="hidden" name="SubmitCurrency" value="" /> <ul> {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}">{$f_currency.sign}</a> </li> {/foreach} </ul> </form> </div> <!-- /Block currencies module --> of course you will have to define own css styles. let me know if this works or if not too Link to comment Share on other sites More sharing options...
Sito Lab Posted August 21, 2013 Author Share Posted August 21, 2013 (edited) I'm very sorry, always disturbing, I'm not a professional programmer, I try to learn from you and from http://www.w3schools.com/ but so many things I can not do this for cheido to you. sorry if I'm always here to disturb just add this? in css # currencies_block_top li {display: inline-block;} I also noticed that if I choose not change dollar euro as their currency remains on the site if you want to try this is the link (so tell me if you like) http://www.iopistoia.wesped.es/index.php Edited August 21, 2013 by lui1969 (see edit history) Link to comment Share on other sites More sharing options...
Sito Lab Posted August 22, 2013 Author Share Posted August 22, 2013 I apologize for my insistence on this, so excuse me again, I thank you for your courtesy Vekia, but I can not understand why $ clicking on the home page always visualize prices in € just add this? in css # currencies_block_top li {display: inline-block;} http://www.iopistoia...ed.es/index.php thanks again and sorry Link to comment Share on other sites More sharing options...
stottycabanas Posted August 22, 2013 Share Posted August 22, 2013 It seems to be working OK as far as I can see. If I click on $, the prices are shown in $ If I click on €, the prices appear in € Link to comment Share on other sites More sharing options...
Sito Lab Posted August 22, 2013 Author Share Posted August 22, 2013 I do not see this, but thank you very much for your answer, why are hours that I fight with this. Link to comment Share on other sites More sharing options...
Sito Lab Posted August 22, 2013 Author Share Posted August 22, 2013 I apologize to everyone, like an idiot I had not deleted the cache, thanks to all for your help Link to comment Share on other sites More sharing options...
Recommended Posts