Jump to content

Numeri pagine non cliccabili


Recommended Posts

Ciao, utilizzo la 1.7 e quando visualizzo tutti i prodotti divisi per pagine (es. 10 prod per pagina), quando clicco sulla pagina 2,3 od altre, non mi permette il click. Il link esiste ed è questo: http://nomesito.com/home/?page=2

Stranamente se uso il tasto destro del mouse, mi permette invece di aprire la pagina in una nuova scheda.

 

Chi mi dice cortesemente cosa posso controllare per correggere questo problema?

grazie mille.

Link to comment
Share on other sites

Ho notato che era attiva la modalità debug. Però disattivandola mi scompare (pagina bianca) il pannello amministrativo e i numeri delle pagine riprendono a funzionare.

Il define inc è questo:
 
/* Debug only */
if (!defined('_PS_MODE_DEV_')) {
define('_PS_MODE_DEV_', true);
}
/* Compatibility warning */
define('_PS_DISPLAY_COMPATIBILITY_WARNING_', false);
if (_PS_MODE_DEV_ === true) {
    @ini_set('display_errors', 'on');
    @error_reporting(E_ALL | E_STRICT);
    define('_PS_DEBUG_SQL_', true);
} else {
    @ini_set('display_errors', 'off');
    define('_PS_DEBUG_SQL_', false);
}
 
define('_PS_DEBUG_PROFILING_', false);
define('_PS_MODE_DEMO_', false);

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...