Chi-VIP Posted March 21, 2014 Share Posted March 21, 2014 Hello everyone, my shop is set to Danish, now I also added German as a language and Euro as currency, but the drop-down to select the language and/or currency is not working at all. I'm using Version 1.5.6.1 http://www.chihuahua-vip-shop.com/ I can manually go to http://www.chihuahua-vip-shop.com/de/ to see the German version, so it is there and both the language and the currency are activated in my back office. BUT I can't select the language when I visit my shop and there is no way I can change the currency from DKK to EUR, I hope someone can help me. Link to comment Share on other sites More sharing options...
dioniz Posted March 21, 2014 Share Posted March 21, 2014 Maybe you can try to reset language and currency module Link to comment Share on other sites More sharing options...
Chi-VIP Posted March 21, 2014 Author Share Posted March 21, 2014 I reset both modules and also tried to uninstall and re-install them, but problem remained Link to comment Share on other sites More sharing options...
dioniz Posted March 21, 2014 Share Posted March 21, 2014 You need tu put some code there so when on hover your #first-currencies have class display:block Link to comment Share on other sites More sharing options...
Chi-VIP Posted March 21, 2014 Author Share Posted March 21, 2014 Where do I change that? Link to comment Share on other sites More sharing options...
dioniz Posted March 21, 2014 Share Posted March 21, 2014 It looks like this is some custom theme, not default one. You need to change that in language and currencies modules css. Link to comment Share on other sites More sharing options...
Chi-VIP Posted March 21, 2014 Author Share Posted March 21, 2014 Am I right here? What do I have to change? <!-- 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"> <p> <input type="hidden" name="id_currency" id="id_currency" value=""/> <input type="hidden" name="SubmitCurrency" value="" /> {l s='Currency' mod='blockcurrencies'} : {$blockcurrencies_sign} </p> <ul id="first-currencies" class="currencies_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}" rel="nofollow">{$f_currency.sign}</a> </li> {/foreach} </ul> </form> </div> <!-- /Block currencies module --> Link to comment Share on other sites More sharing options...
dioniz Posted March 21, 2014 Share Posted March 21, 2014 (edited) Code for on hover is in this part: $(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"); }); But you don't have countries div in your code. Compare your themes module file and default module file and see the difference. Edited March 21, 2014 by dioniz (see edit history) Link to comment Share on other sites More sharing options...
Chi-VIP Posted March 21, 2014 Author Share Posted March 21, 2014 I exchanged the current module files for blockcurrency and blocklanguage with the default ones, but nothing hmm Could it be a problem I should report to the developer of the theme? Link to comment Share on other sites More sharing options...
dioniz Posted March 21, 2014 Share Posted March 21, 2014 I think that would be the best thing to do Link to comment Share on other sites More sharing options...
janfrilich Posted March 26, 2014 Share Posted March 26, 2014 Hi, We have the same issue with more themes (1.5.6.1 & 1.5.6.2) from various developers. Did anynone resolve it?? Link to comment Share on other sites More sharing options...
Chi-VIP Posted March 27, 2014 Author Share Posted March 27, 2014 The developer of my theme fixed it, so it works for me, but I'll leave the topic open, maybe someone can solve it for you Link to comment Share on other sites More sharing options...
vekia Posted April 17, 2014 Share Posted April 17, 2014 hello im back to this thread i received email from one merchant with similar problem do you know how your developer fixed this? Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now