Jump to content

no carga modulo editor texto pagina inicio


lobre

Recommended Posts

hola, mi problema es que aunque el modulo de editor de texto de la pagina de inicio esta activado no aparece en la pagina de inicio por mucho que lo intento.

 

 

Como pagina de inicio siempre se va a nuevos productos.

 

Os agradeceria que me comentarais que puede estar causando el problema.

 

Un saludo y gracias por adelantado.

Link to comment
Share on other sites

Indique versión de Prestashop

 

Indique si esta usando la plantilla por defecto u otra.

 

Ten activado el reporte de errores: http://www.prestashop.com/forums/topic/232477-%C2%BFqu%C3%A9-hacer-cuando-se-queda-la-pantalla-en-blanco-en-prestashop/

 

¿El módulo, supongo que has probado ya reiniciarlo, desinstalarlo y volver a instalarlo? ¿no?

  • Like 1
Link to comment
Share on other sites

buenas, si ya probe a reiniciarlo y desinstalarlo pero sigue igual.

 

La version de prestashop es 1.4.6.1.

 

Intentare probar lo que me has comentado del contentbox

 Gracias.

 

No me has dado todos los detalles que te he pedido.

 

Dime si usas la plantilla por defecto u otra.

 

Si puedes  dime la dirección de tu web.

 

Y si puedes ten habilitado el reporte de errores: http://www.prestashop.com/forums/topic/232477-%C2%BFqu%C3%A9-hacer-cuando-se-queda-la-pantalla-en-blanco-en-prestashop/

 

---

 

Confirmame si el modulo al instalarlo (me refiero el editorial), se te situa en el DisplayHome en la pestaña Módulos -> Posiciones

Link to comment
Share on other sites

Perdona soy un poco novato en prestashop, la plantilla no es la que lleva prestashop por defecto , es una web que me pidieron editar porque el anterior administrador desapareció.

 

 

 

En la pestaña posiciones aparace el editorial en dos posiciones homepage content y en header of pages.

 

Displayhome no lo encuentro.

 

La dirección de la web es vhoe.es

Link to comment
Share on other sites

Perdona soy un poco novato en prestashop, la plantilla no es la que lleva prestashop por defecto , es una web que me pidieron editar porque el anterior administrador desapareció.

 

 

 

En la pestaña posiciones aparace el editorial en dos posiciones homepage content y en header of pages.

 

Displayhome no lo encuentro.

 

La dirección de la web es vhoe.es

 

Yo acabo de entrar a tu tienda, y a mi no me carga la pagina principal, al entrar me carga una pagina, donde aparece los nuevos productos.

 

¿Es que has cambiado la url de la home?

Link to comment
Share on other sites

Esa es la cuestión que desde que me la pasaron aparece directamente en nuevos productos y no en la pagina de inicio y no se como cambiarlo

 

Como usas la versión 1.4, de Prestashop, ve a la pestaña Preferencias -> SEO y URLS y donde dice:

Página de inicio

Fijate que tengas puesto:

index.php

(si no lo tienes ponlo)

Link to comment
Share on other sites

 

Esto es lo que contiene mi archivo haccess.

 

 

 

# .htaccess automaticaly generated by PrestaShop e-commerce open-source solution

# WARNING: PLEASE DO NOT MODIFY THIS FILE MANUALLY. IF NECESSARY, ADD YOUR SPECIFIC CONFIGURATION WITH THE HTACCESS GENERATOR IN BACK OFFICE


 

 

<IfModule mod_rewrite.c>

# URL rewriting module activation

RewriteEngine on

 

# URL rewriting rules

RewriteRule ^api/?(.*)$ /webservice/dispatcher.php?url=$1 [QSA,L]

</IfModule>

 

# Catch 404 errors

ErrorDocument 404 /404.php
Link to comment
Share on other sites

no he encontrado el archivo indexcontroller.php

 

El contenido del index.php es este:

 

 

<?php
/*
* 2007-2011 PrestaShop 
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to [email protected] so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author PrestaShop SA <[email protected]>
*  @copyright  2007-2011 PrestaShop SA
*  @version  Release: $Revision: 6594 $
*  @license    http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*/
 
require(dirname(__FILE__).'/config/config.inc.php');
ControllerFactory::getController('NewProductsController')->run();
Link to comment
Share on other sites

Si el fichero:

IndexController.php

lo tienes.

 

Lo que pasa es que tienes que verlo en el directorio:

/controllers/

Es decir aquí:

/controllers/IndexController.php

O si lo que tienes es un override, pues aquí:

/override/controllers/IndexController.php

Link to comment
Share on other sites

Buenos dias, este es el contenido del indexcontroller.php

 

 

 

<?php
/*
* 2007-2011 PrestaShop 
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to [email protected] so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author PrestaShop SA <[email protected]>
*  @copyright  2007-2011 PrestaShop SA
*  @version  Release: $Revision: 6594 $
*  @license    http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*/
 
class IndexControllerCore extends FrontController
{
public function __construct()
{
$this->php_self = Configuration::get('PS_HOMEPAGE_PHP_SELF');
 
parent::__construct();
}
 
public function process()
{
parent::process();
self::$smarty->assign('HOOK_HOME', Module::hookExec('home'));
}
 
public function displayContent()
{
parent::displayContent();
self::$smarty->display(_PS_THEME_DIR_.'index.tpl');
}
}
Link to comment
Share on other sites

 

Buenos dias, este es el contenido del indexcontroller.php

 

 

 

<?php
/*
* 2007-2011 PrestaShop 
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to [email protected] so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author PrestaShop SA <[email protected]>
*  @copyright  2007-2011 PrestaShop SA
*  @version  Release: $Revision: 6594 $
*  @license    http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*/
 
class IndexControllerCore extends FrontController
{
public function __construct()
{
$this->php_self = Configuration::get('PS_HOMEPAGE_PHP_SELF');
 
parent::__construct();
}
 
public function process()
{
parent::process();
self::$smarty->assign('HOOK_HOME', Module::hookExec('home'));
}
 
public function displayContent()
{
parent::displayContent();
self::$smarty->display(_PS_THEME_DIR_.'index.tpl');
}
}

 

 

Vaya pues esta correcto.

 

Mira ver el fichero:

/themes/plantilla/index.tpl

Por cierto, 

 

¿Puedes mandarme una pantallazo de la pestaña Preferencias -> SEO y URLS?

Link to comment
Share on other sites

este es el contenido de index.tpl

 

 

{*
* 2007-2011 PrestaShop 
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to [email protected] so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author PrestaShop SA <[email protected]>
*  @copyright  2007-2011 PrestaShop SA
*  @version  Release: $Revision: 6594 $
*  @license    http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*}
 
{$HOOK_HOME}
Link to comment
Share on other sites

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