Caflo Posted June 28, 2021 Share Posted June 28, 2021 Buenos días, Quiero incluir un código pero que solamente aparezca cuando esté en el idioma español. ¿Cómo lo podría hacer? Utilizo Prestashop 1.7.3. Gracias. Link to comment Share on other sites More sharing options...
Caflo Posted July 5, 2021 Author Share Posted July 5, 2021 On 6/28/2021 at 8:13 AM, Caflo said: Buenos días, Quiero incluir un código pero que solamente aparezca cuando esté en el idioma español. ¿Cómo lo podría hacer? Utilizo Prestashop 1.7.3. Gracias. ¿Nadie me puede ayudar? Link to comment Share on other sites More sharing options...
burrots Posted July 5, 2021 Share Posted July 5, 2021 (edited) Si estas en un archivo .tpl seria lo siguiente: {if $language.iso_code === 'es'} --- Tu codigo --- {/if} Si es un .php: if ($this->context->language->iso_code === 'es') { --- Tu codigo --- } Suerte Edited July 5, 2021 by burrots (see edit history) 2 Link to comment Share on other sites More sharing options...
Caflo Posted July 6, 2021 Author Share Posted July 6, 2021 (edited) 21 hours ago, burrots said: Si estas en un archivo .tpl seria lo siguiente: {if $language.iso_code === 'es'} --- Tu codigo --- {/if} Si es un .php: if ($this->context->language->iso_code === 'es') { --- Tu codigo --- } Suerte Muchas gracias, funciona perfecto. Edited July 6, 2021 by Caflo (see edit history) Link to comment Share on other sites More sharing options...
burrots Posted July 6, 2021 Share Posted July 6, 2021 De nada amigo. Un placer 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