JackiiBE Posted June 2, 2016 Share Posted June 2, 2016 Hi, Is it possible to change the design of the language switcher module to something like in the screenshot (see attachment). So short notation: French -> FR Nederlands -> NL English -> EN Thanks! Grafoman Link to comment Share on other sites More sharing options...
Rolige Posted June 2, 2016 Share Posted June 2, 2016 All is possible, you need change several files, as tpl, css and js Link to comment Share on other sites More sharing options...
JackiiBE Posted June 3, 2016 Author Share Posted June 3, 2016 (edited) Any starting point? I'm just starting to customize with Prestashop. Edit: to shorten the question. I just need to know how to shorten the language notation (i can do some css etc ). Show to go from 'French' to 'FR' Edited June 3, 2016 by JackiiBE (see edit history) Link to comment Share on other sites More sharing options...
Rolige Posted June 8, 2016 Share Posted June 8, 2016 In the default theme, in the file: /themes/default-bootstrap/modules/blocklanguages/blocklanguages.tpl Just change this lines: {if isset($lang_rewrite_urls.$indice_lang)} <a href="{$lang_rewrite_urls.$indice_lang|escape:'html':'UTF-8'}" title="{$language.name}"> {else} <a href="{$link->getLanguageLink($language.id_lang)|escape:'html':'UTF-8'}" title="{$language.name}"> {/if} To: {if isset($lang_rewrite_urls.$indice_lang)} <a href="{$lang_rewrite_urls.$indice_lang|escape:'html':'UTF-8'}" title="{$language.iso_code}"> {else} <a href="{$link->getLanguageLink($language.id_lang)|escape:'html':'UTF-8'}" title="{$language.iso_code}"> {/if} Link to comment Share on other sites More sharing options...
JackiiBE Posted June 8, 2016 Author Share Posted June 8, 2016 Thank you! 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