Jump to content

Recommended Posts

Puedes hacerlo utilizando el modulo

Editor de textos página de inicio

En el modulo en herramientas/ codigo fuente copia este codigo

<div class="images-centered-home"><img src="http://fo.demo.prestashop.com/img/p/7/7-home_default.jpg" alt="" /> <img src="http://fo.demo.prestashop.com/img/p/7/7-home_default.jpg" alt="" /></div>

Luego  edita el archivo global.css,  está en esta ruta:

/themes/default-bootstrap/css/global.css

Pega al final o donde quieras este codigo:

.images-centered-home img {
    padding: 10px 10px 10px 10px;
}
.images-centered-home {
    margin: 0 auto;
    text-align: center;
    width: 100%;
}
Link to comment
Share on other sites

Me dice "este módulo ya está copiado en este hook."

 

El modulo ya esta en esa posición y por eso no me deja ponerlo ahí de nuevo. Pero sale bajo, no se si será culpa de la versión 1.6.0.6 o que, pero nada, no hay forma. El tema que tengo puesto es el que viene por defecto, :/

Link to comment
Share on other sites

Entonces tienes que cambiar de hook el modulo, ponerlo en el hook top

Editor de textos página de inicio

Para cambiarlo tienes que agregar en el archivo editorial.php esto para poder transplantarlo de hook

 public function hookDisplayTop($params)
    {
        if (!$this->isCached('editorial.tpl', $this->getCacheId()))
        {
            $id_shop = (int)$this->context->shop->id;
            $editorial = EditorialClass::getByIdShop($id_shop);
            if (!$editorial)
                return;            
            $editorial = new EditorialClass((int)$editorial->id, $this->context->language->id);
            if (!$editorial)
                return;
            $this->smarty->assign(array(
                    'editorial' => $editorial,
                    'default_lang' => (int)$this->context->language->id,
                    'image_width' => Configuration::get('EDITORIAL_IMAGE_WIDTH'),
                    'image_height' => Configuration::get('EDITORIAL_IMAGE_HEIGHT'),
                    'id_lang' => $this->context->language->id,
                    'homepage_logo' => !Configuration::get('EDITORIAL_IMAGE_DISABLE') &&file_exists('modules/editorial/homepage_logo_'.(int)$id_shop.'.jpg'),
                    'image_path' => $this->_path.'homepage_logo_'.(int)$id_shop.'.jpg'
                ));
        }
        return $this->display(__FILE__, 'editorial.tpl', $this->getCacheId());
    }

Si no te quieres complicar, bajate este modulo y le pones el html ahi y te olvidas del otro, este lo puedes poner donde quieras

http://contentbox.org/

 

 

 

Luego pon este condicional en el tpl para que solo se muestre en el home

{if $page_name=='index') <div id="contentinhome" class="contentinhome">
{$content}
</div> {/if}
Edited by ventura (see edit history)
Link to comment
Share on other sites

  • nadie locked this topic
Guest
This topic is now closed to further replies.
×
×
  • Create New...