Jump to content

Ocultar módulos recomendados


Recommended Posts

Supongo que con un código raro de ejecución se podría hacer, pero no tengo ni idea.

 

Se me ocurre modificar esto del fichero prestashop\admin\header.inc.php y pasarle a false:

 

Context::getContext()->smarty->assign(array(
'navigationPipe', Configuration::get('PS_NAVIGATION_PIPE'),
'meta_title' => implode(' '.Configuration::get('PS_NAVIGATION_PIPE').' ', $title),
'display_header' => true,
'display_footer' => true,
));
$dir = Context::getContext()->smarty->getTemplateDir(0).'controllers'.DIRECTORY_SEPARATOR.trim($con->override_folder, '\\/').DIRECTORY_SEPARATOR;
$header_tpl = file_exists($dir.'header.tpl') ? $dir.'header.tpl' : 'header.tpl';
$tool_tpl = file_exists($dir.'page_header_toolbar.tpl') ? $dir.'page_header_toolbar.tpl' : 'page_header_toolbar.tpl';
Context::getContext()->smarty->assign(array(
'show_page_header_toolbar' => true,
'title' => implode(' '.Configuration::get('PS_NAVIGATION_PIPE').' ', $title),
'toolbar_btn' => array()
 
Lo que también así quedaría oculto para todos.
 
Luego he visto este trocito de codigo:
 
if ($tabAccess['view'] !== '1')
die (Tools::displayError('You do not have permission to view this.'));
 
Creo que quiere decir que si no es el ADMIN pues salta esa alerta.
 
Pero eso si, no se ni como lo pondría, soy de los que hace pruebas y pruebas hasta que a veces me sale "algo"
 
Espero por lo menos que te haya dado alguna idea.
 
Saludos.
Edited by zamio (see edit history)
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...