Variety Posted December 3, 2023 Share Posted December 3, 2023 (edited) Hola buenas tardes soy nueva en PRESTASHOP y se más bien poco de programación. El problema es que desde hace un rato, al entrar en Administración de Módulos en mi Back Office, me aparece la siguiente ventana de error. Antes funcionaba perfectamente y no sé si he tocado algo. Sé que tengo que editar el jxhtmlcontent.php pero no sé cual es el error. Si pueden ayudarme os lo agradecería. Os dejo escrito el comando completo: 'context' => (Configuration::get('PS_MULTISHOP_FEATURE_ACTIVE') == 0) ? 1 : ($this->context->shop->getTotalShops() != 1) ? $this->context->shop->getContext() : 1 Muchas gracias. Edited December 3, 2023 by Variety (see edit history) Link to comment Share on other sites More sharing options...
juanrojas Posted December 3, 2023 Share Posted December 3, 2023 hola, el error proviene del modulo jxhtmlcontent asi que entra via FTP y renombra su carpeta Link to comment Share on other sites More sharing options...
Variety Posted December 3, 2023 Author Share Posted December 3, 2023 Justo ahora, juanrojas dijo: hola, el error proviene del modulo jxhtmlcontent asi que entra via FTP y renombra su carpeta Hola, muchas gracias por tu ayuda, he conseguido encontrar el fallo. Era simplemente que faltaban unos paréntesis en el código (aunque yo no lo he tocado nunca). La solución sería la siguiente por si a alguien le ocurre lo mismo: CÓDIGO ANTES: 'context' => (Configuration::get('PS_MULTISHOP_FEATURE_ACTIVE') == 0) ? 1 : ($this->context->shop->getTotalShops() != 1) ? $this->context->shop->getContext() : 1 CÓDIGO CORREGIDO: 'context' => (Configuration::get('PS_MULTISHOP_FEATURE_ACTIVE') == 0) ? 1 : ($this->context->shop->getTotalShops() != 1) ? ($this->context->shop->getContext() : 1) Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now