Warning: Cannot modify header information - headers already sent by (output started at /home3/fvqjwuzk/public_html/blog/wp-content/plugins/devformatter/devformatter.php:1) in /home3/fvqjwuzk/public_html/blog/wp-includes/feed-rss2-comments.php on line 8
Comentarios en: Prestashop, añadir Instagram en el bloque social http://developando.com/blog/prestashop-anadir-instagram-bloque-social Recursos para desarrolladores como nosotros Wed, 14 Jan 2015 17:22:47 +0000 hourly 1 http://wordpress.org/?v=4.1.18 Por: Delopando Web&Mobile http://developando.com/blog/prestashop-anadir-instagram-bloque-social#comment-249 Wed, 10 Dec 2014 21:28:08 +0000 http://developando.com/blog/?p=2664#comment-249 ¡Gracias por el comentario! Actualizaremos el post con la info que comentas.

]]>
Por: Cesar http://developando.com/blog/prestashop-anadir-instagram-bloque-social#comment-248 Wed, 10 Dec 2014 21:13:29 +0000 http://developando.com/blog/?p=2664#comment-248 Para la versión de prestashop 1.6.0.x, usando la plantilla por defecto (default-bootstrap) seguir los siguientes pasos:

hay que modificar 2 archivos:

1.- /themes/default-bootstrap/css/global.css: busca la línea 6900 aprox., y donde encuentres este código:

.footer-container #footer #social_block ul li.pinterest a:before {
content: “\f0d2″; }

debajo añades esto (así añadimos el icono del instagram):

.footer-container #footer #social_block ul li.instagram a:before {
content: “\f16d”; }

2.- /themes/default-bootstrap/modules/blocksocial/blocksocial.tpl: busca la línea 64 aprox, y donde encuentres este código:

{if $pinterest_url != ”}


{l s=’Pinterest’ mod=’blocksocial’}

{/if}

debajo añades esto:

{if $instagram_url|escape:html:’UTF-8′ != ”}


{l s=’Instagram’ mod=’blocksocial’}

{/if}

]]>