basit006 Posted November 15, 2013 Share Posted November 15, 2013 how can i have two logos in my website one for english and one for other language can i have this kind of thing in my website? anyone is there to help me with this www.tujarat.com Link to comment Share on other sites More sharing options...
El Patron Posted November 15, 2013 Share Posted November 15, 2013 see this post for good advice http://www.prestashop.com/forums/topic/46690-solvedhow-to-change-homepage-logo-refering-to-language/ 1 Link to comment Share on other sites More sharing options...
vekia Posted November 15, 2013 Share Posted November 15, 2013 header.tpl example for EN and ES languages {if $lang_iso=="en"} <a id="header_logo" href="{$base_dir}" title="{$shop_name|escape:'htmlall':'UTF-8'}"> <img class="logo" src="{$logo_url}" alt="{$shop_name|escape:'htmlall':'UTF-8'}" {if $logo_image_width}width="{$logo_image_width}"{/if} {if $logo_image_height}height="{$logo_image_height}" {/if}/> </a> {/if} {if $lang_iso=="es"} <a id="header_logo" href="{$base_dir}" title="{$shop_name|escape:'htmlall':'UTF-8'}"> <img class="logo" src="url_to_the_spanish_logo" alt="{$shop_name|escape:'htmlall':'UTF-8'}" {if $logo_image_width}width="{$logo_image_width}"{/if} {if $logo_image_height}height="{$logo_image_height}" {/if}/> </a> {/if} 1 Link to comment Share on other sites More sharing options...
basit006 Posted November 19, 2013 Author Share Posted November 19, 2013 Thanks vekia where should i put this code in which part of header.tpl and also where should i upload the logo of other language Link to comment Share on other sites More sharing options...
basit006 Posted November 19, 2013 Author Share Posted November 19, 2013 Thanks vekia very much for your kind and always help i made it now i have two logos your great bro thanks alot 1 Link to comment Share on other sites More sharing options...
vekia Posted November 19, 2013 Share Posted November 19, 2013 sorry for late reply, of course you have to use this code in header.tpl file where actual logo appears Link to comment Share on other sites More sharing options...
Recommended Posts