PROSOFTWARE Posted March 24, 2010 Share Posted March 24, 2010 Buenas, como puedo quitar la informacion que me aparece al momento de ingresar al Back Office de PrestaShop al día??? Que no me salga ese cuadro con las noticias. Gracias!!! Link to comment Share on other sites More sharing options...
PeN Posted March 25, 2010 Share Posted March 25, 2010 Abre el archivo index.php dentro de tu carpeta del back officce y vete al final y localiza: /* News from PrestaShop website */ echo ' '.translate('PrestaShop live feed').''; $isoDefault = Language::getIsoById(intval(Configuration::get('PS_LANG_DEFAULT'))); $isoUser = Language::getIsoById(intval($cookie->id_lang)); echo'<iframe frameborder="no" style="margin: 0px; padding: 0px; width: 780px; height: 380px;" src="http://www.prestashop.com/rss/news.php?v='._PS_VERSION_.'〈='.$isoUser.'"></iframe>'; Es de la linea 89 a la 94, para evitar que salga o borralo, o simplemente coge el */ de la primera linea y ponlo al final de ese codigo, de manera que quede asi: /* News from PrestaShop website echo ' '.translate('PrestaShop live feed').''; $isoDefault = Language::getIsoById(intval(Configuration::get('PS_LANG_DEFAULT'))); $isoUser = Language::getIsoById(intval($cookie->id_lang)); echo'<iframe frameborder="no" style="margin: 0px; padding: 0px; width: 780px; height: 380px;" src="http://www.prestashop.com/rss/news.php?v='._PS_VERSION_.'〈='.$isoUser.'"></iframe>'; */ Eso hara que el codigo no sea ejecutado y asi lo tendras por si algun dia te apetece que vuelva a salir. Link to comment Share on other sites More sharing options...
nilvana Posted November 29, 2011 Share Posted November 29, 2011 buenos dias Quisiera si me pudieran ayudar yo tambien quiero quitar el prestashop al dia pero estoy revisando mi archivo index.php en la carpeta admin pero no me salen estas lineas de codigo, mire lo q me sale: <?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: * http://opensource.org/licenses/osl-3.0.php * 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 */ define('_PS_ADMIN_DIR_', getcwd()); define('PS_ADMIN_DIR', _PS_ADMIN_DIR_); // Retro-compatibility include(PS_ADMIN_DIR.'/../config/config.inc.php'); include(PS_ADMIN_DIR.'/functions.php'); include(PS_ADMIN_DIR.'/header.inc.php'); if (empty($tab) and !sizeof($_POST)) { $tab = 'AdminHome'; $_POST['tab'] = 'AdminHome'; $_POST['token'] = Tools::getAdminTokenLite($tab); } if ($id_tab = checkingTab($tab)) { $isoUser = Language::getIsoById(intval($cookie->id_lang)); $tabs = array(); recursiveTab($id_tab); $tabs = array_reverse($tabs); $bread = ''; foreach ($tabs AS $key => $item) $bread .= ' <img src="../img/admin/separator_breadcrum.png" style="margin-right:5px" /> '.((sizeof($tabs) - 1 > $key) ? '<a href="?tab='.$item['class_name'].'&token='.Tools::getAdminToken($item['class_name'].intval($item['id_tab']).intval($cookie->id_employee)).'">' : '').' '.$item['name'].((sizeof($tabs) - 1 > $key) ? '</a>' : ''); echo'<script type="text/javascript"> $(function() { $.ajax({ type: \'POST\', url: \'ajax.php\', data: \'helpAccess=1&item='.$item['class_name'].'&isoUser='.$isoUser.'&country='.Country::getIsoById(Configuration::get('PS_COUNTRY_DEFAULT')).'&version='._PS_VERSION_.'\', async : true, success: function(msg) { $("#help-button").html(msg); $("#help-button").fadeIn("slow"); } }); });</script>'; echo '<div class="path_bar"> <div id="help-button" class="floatr" style="display: none; font-family: Verdana; font-size: 10px; margin-right: 4px; margin-top: 4px;"> </div> <a href="?token='.Tools::getAdminToken($tab.intval(Tab::getIdFromClassName($tab)).intval($cookie->id_employee)).'">'.translate('Back Office').'</a> '.$bread.' </div>'; if (Validate::isLoadedObject($adminObj)) { if ($adminObj->checkToken()) { /* Filter memorization */ if (isset($_POST) AND !empty($_POST) AND isset($adminObj->table)) foreach ($_POST AS $key => $value) if (is_array($adminObj->table)) { foreach ($adminObj->table AS $table) if (strncmp($key, $table.'Filter_', 7) === 0 OR strncmp($key, 'submitFilter', 12) === 0) $cookie->$key = !is_array($value) ? $value : serialize($value); } elseif (strncmp($key, $adminObj->table.'Filter_', 7) === 0 OR strncmp($key, 'submitFilter', 12) === 0) $cookie->$key = !is_array($value) ? $value : serialize($value); if (isset($_GET) AND !empty($_GET) AND isset($adminObj->table)) foreach ($_GET AS $key => $value) if (is_array($adminObj->table)) { foreach ($adminObj->table AS $table) if (strncmp($key, $table.'OrderBy', 7) === 0 OR strncmp($key, $table.'Orderway', 8) === 0) $cookie->$key = $value; } elseif (strncmp($key, $adminObj->table.'OrderBy', 7) === 0 OR strncmp($key, $adminObj->table.'Orderway', 12) === 0) $cookie->$key = $value; $adminObj->displayConf(); $adminObj->postProcess(); $adminObj->displayErrors(); $adminObj->display(); } else { // If this is an XSS attempt, then we should only display a simple, secure page ob_clean(); // ${1} in the replacement string of the regexp is required, because the token may begin with a number and mix up with it (e.g. $17) $url = preg_replace('/([&?]token=)[^&]*(&.*)?$/', '${1}'.$adminObj->token.'$2', $_SERVER['REQUEST_URI']); if (false === strpos($url, '?token=') AND false === strpos($url, '&token=')) $url .= '&token='.$adminObj->token; $message = translate('Invalid security token'); echo '<html><head><title>'.$message.'</title></head><body style="font-family:Arial,Verdana,Helvetica,sans-serif;background-color:#EC8686"> <div style="background-color:#FAE2E3;border:1px solid #000000;color:#383838;font-weight:700;line-height:20px;margin:0 0 10px;padding:10px 15px;width:500px"> <img src="../img/admin/error2.png" style="margin:-4px 5px 0 0;vertical-align:middle"> '.$message.' </div>'; echo '<a href="'.htmlentities($url).'" method="get" style="float:left;margin:10px"> <input type="button" value="'.Tools::htmlentitiesUTF8(translate('I understand the risks and I really want to display this page')).'" style="height:30px;margin-top:5px" /> </a> <a href="index.php" method="get" style="float:left;margin:10px"> <input type="button" value="'.Tools::htmlentitiesUTF8(translate('Take me out of here!')).'" style="height:40px" /> </a> </body></html>'; die; } } } include(PS_ADMIN_DIR.'/footer.inc.php'); Agradezco su ayyuda, tengo instalado prestashop 1.4.3.0 no se si cambian los datos, soy principiante en prestashop gracias Link to comment Share on other sites More sharing options...
lucasriquelme Posted June 13, 2012 Share Posted June 13, 2012 Hola. En las versiones nuevas de prestashop hay que editar el archivo ajax.php que se encuentra dentro de la carpeta de administración de tu sitio. Ahí debés comentar ( con //) o borrar desde la línea 670 aproximadamente, donde dice //// DISCOVER PRESTASHOP hasta la línea 688 que dice $result['discover_prestashop'] .= $content[1]; de esa forma se quitan las noticia y el modulo de Descubra Prestashop. saludos y suerte!!! Link to comment Share on other sites More sharing options...
ssergio_ll Posted June 25, 2012 Share Posted June 25, 2012 Yo no consigo quitarlo con la versión de PrestaShop 1.4.8.2. ¿Alguna ayuda? Gracias. Link to comment Share on other sites More sharing options...
YMOON Posted September 13, 2012 Share Posted September 13, 2012 Yo no consigo quitarlo con la versión de PrestaShop 1.4.8.2. ¿Alguna ayuda? Gracias. SSergio busca dentro de la carpeta admin el archivo ajax.php comenta o borra a partir de las líneas 665 aprox donde comienza diciendo DISCOVER PRESTASHOP, hasta la 668 antes que comience esta línea die(Tools::jsonEncode($result)); Espero te sirva. Saludos Link to comment Share on other sites More sharing options...
eddgeo Posted October 11, 2012 Share Posted October 11, 2012 Alguien sabe como sacarlo en la ultima version? es decir la 1.5.1?? Link to comment Share on other sites More sharing options...
YMOON Posted October 11, 2012 Share Posted October 11, 2012 (edited) Alguien sabe como sacarlo en la ultima version? es decir la 1.5.1?? Hola eddgeo, debes entrar en la carpeta que contiene los archivos del admin luego ve a controllers/admin/adminhome.php, vas a encontrar el Discover Prestashop en la línea 462 aprox. Espero te sirva! Saludos Edited October 11, 2012 by YMOON (see edit history) Link to comment Share on other sites More sharing options...
eddgeo Posted October 11, 2012 Share Posted October 11, 2012 hola brother no lo encuentro, no ahi nada Link to comment Share on other sites More sharing options...
YMOON Posted October 11, 2012 Share Posted October 11, 2012 hola brother no lo encuentro, no ahi nada Disculpa amigo, no tienes que entrar en la carpeta del admin, solo entra en la carpeta controllers/admin/adminhome.php encontrarás el Discover Prestashop a partir de la línea 488. Link to comment Share on other sites More sharing options...
eddgeo Posted October 11, 2012 Share Posted October 11, 2012 gracias ya lo encontre pero lo elimino y aun me sigue apareciendo. Link to comment Share on other sites More sharing options...
YMOON Posted October 11, 2012 Share Posted October 11, 2012 Eliminaste hasta la línea 503? Dale f5 para refrescar la pagina, cerra y volvé a entrar. Link to comment Share on other sites More sharing options...
eddgeo Posted October 11, 2012 Share Posted October 11, 2012 me sale error de sintaxis brothers. y siempre sale las noticias en la admin. Link to comment Share on other sites More sharing options...
Cristrinity Posted March 18, 2013 Share Posted March 18, 2013 En la versión 1.5.3.1 para quitar la publicidad de la home y dejar solamente 'Enlaces rápidos' y 'Un buen comienzo' hay que tocar este archivo: admin/theme/default/template/controllers/home/content.tpl Y comentar estas líneas: <!-- <p class="center"><img src="../img/loader.gif" alt="" /></p> --> <!-- <div id="discover_prestashop"><p class="center"><img src="../img/loader.gif" alt="" />{l s='Loading...'}</p></div> {hook h="displayAdminHomeInfos"} {hook h="displayBackOfficeHome"} {*old name of the hook*} --> A mí se me fueron así! Link to comment Share on other sites More sharing options...
leonid ramirez Posted July 6, 2013 Share Posted July 6, 2013 (edited) Hola eddgeo, debes entrar en la carpeta que contiene los archivos del admin luego ve a controllers/admin/adminhome.php, vas a encontrar el Discover Prestashop en la línea 462 aprox. Espero te sirva! Saludos Para la versión 1.5.4.1 se logra entrando a la carpeta controllers/admin/adminhome.php, ahí encuentras el discover prestashop en la linea 489, desde ahi hasta antes de la 493 solo modificas el código por este y listo: $result['discover_prestashop'] = '<div id="block_tips"></div>'; $result['discover_prestashop'] .= '<div class="row-news"></div>'; espero les sirva sirva, que yo lo resolví leyendo este post y analizando el codigo =). Muchas gracias YMOON. Respecto a que elimine hasta la 503, no me parece correcto ya que solo ocasiona errores, ademas que te llevas la llave de la función Edited July 6, 2013 by leonid ramirez (see edit history) Link to comment Share on other sites More sharing options...
Recommended Posts