Viewing 1 replies (of 1 total)
  • Thread Starter uavms

    (@uavms)

    I answer my own question. I know exactly how the problem was corrected. But ships around with help WP DBUG.

    Activate WP DBUG in the file wp-config.php in the root section of the site.

    First you need to check the wp-config.php on the presence of the following lines

    define(‘WP_DEBUG’, false);
    define(‘WP_DEBUG_LOG’, false);
    define(‘WP_DEBUG_DISPLAY’,false);
    @ini_set(‘display_errors’, 0);

    If they are, you can replace “false” on “true”, and “0” on “1”.

    If not then add

    define(‘WP_DEBUG’, true);
    define(‘WP_DEBUG_LOG’, true);
    define(‘WP_DEBUG_DISPLAY’, true);
    @ini_set(‘display_errors’, 1);

    But be careful, the inclusion of functions can affect the operation of other programs.

    After 5-10 minutes, I updated the WP Glossary plug-in settings and it started working and the page is showing up.

Viewing 1 replies (of 1 total)
  • The topic ‘Problems with link to terms (page terms)’ is closed to new replies.