Magento Chile Desarrolladores Magento

¿Tienes una pregunta?

Si usted tiene cualquier pregunta, escriba a continuación lo que está buscando!

Quitar Noticias en encabezado de versión 1.4.0.1 Magento


Hoy me he topado con una molesta noticia en el encabezado en el frontend y backend de Magento que dice lo siguiente:
This is a demo store. Any orders placed through this store will not be honored or fulfilled.

Bueno esto ocurre cuando un tema no es lo suficientemente completo para Magento, y nos lanza este error (según ley en un par de post). Bueno la forma de solucionarlo es:

1.- Comment estás lineas:

CÓDIGO:

<?php if ($this->displayDemoNotice()): ?>
    

<?php echo $this->__('This is a demo store. Any orders placed through this store will not be honored or fulfilled.') ?>

< ?php endif; ?>

y dejarlas así:

CÓDIGO:

<?php
/**
<?php if ($this->displayDemoNotice()): ?>
    

<?php echo $this->__('This is a demo store. Any orders placed through this store will not be honored or fulfilled.') ?>

< ?php endif; ?> */ ?>

Dejar así tanto como en: app/design/frontend/base/template/page/html/notices.phtml (para el frontend)

Como en: app/design/adminhtml/template/page/notices.phtml (para el backend)

Atte

Boris Durán R.

Quitar Noticias en encabezado de versión 1.4.0.1 Magento
5 (100%) 1 voto

Comentarios

Comentarios

Leave a Reply

You must be logged in to post a comment.