Alvaro Posted January 16, 2018 Share Posted January 16, 2018 Hola, Para poner en situación, hace ya unos años me hicieron una tienda en prestashop, (versión 1.5.4.0) Ahora estoy actualizándola un poco para volver a ponerla en marcha, con el primer problema que me he topado es con el bloque social, que contiene facebook, twiter y rrs, me gustaría añadir youtube, instagram y google + y quitar rrs; además me gustaría cambiar los logotipos. investigando por ahí he visto que está en el archivo themes, bloque social. pero no se que código añadir o quitar. ¿Por dónde sigo? Link to comment Share on other sites More sharing options...
ENS Enterprises Posted January 16, 2018 Share Posted January 16, 2018 Hola, Debes modificar blocksocial.tpl y blocksocial.php En blocksocial.tpl necesitas agregar: {if $ youtube_url! = ''} <li class = "youtube"> <a class="_blank" href="{$youtube_url|escape:html:'UTF-8'}"> {ls = 'YouTube' mod = 'blocksocial'} </a> </ li> {/ if} {if $ pinterest_url! = ''} <li class = "pinterest"> <a class="_blank" href="{$pinterest_url|escape:html:'UTF-8'}"> {ls = 'Pinterest' mod = 'blocksocial'} </a> </ li> {/ if} {if $ instagram_url! = ''} <li class = "instagram"> <a class="_blank" href="{$instagram_url|escape:html:'UTF-8'}"> {ls = mod 'Instagram' = 'blocksocial'} </a> </ li> {/ if} dentro del ul En blocksocial.php formación( 'tipo' => 'texto', 'label' => $ this-> l ('YouTube URL'), 'nombre' => 'blocksocial_youtube', 'desc' => $ this-> l ('Tu cuenta oficial de YouTube.'), ), formación( 'tipo' => 'texto', 'label' => $ this-> l ('Pinterest URL:'), 'nombre' => 'blocksocial_pinterest', 'desc' => $ this-> l ('Su cuenta oficial de Pinterest.'), ), formación( 'tipo' => 'texto', 'label' => $ this-> l ('Instagram URL:'), 'nombre' => 'blocksocial_instagram', 'desc' => $ this-> l ('Su cuenta oficial de Instagram.'), ), dentro de inpur de la función renderForm () Gracias Link to comment Share on other sites More sharing options...
Alvaro Posted January 19, 2018 Author Share Posted January 19, 2018 Gracias, ahora historia es que no me deja añadir texto... 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