• Resolved arudd

    (@arudd)


    Strict Standards: Redefining already defined constructor for class Ce_Wp_Menu_Per_Page in /plugins/ce-wp-menu-per-page/ce-wp-menu-per-page.php on line 38

    The plugin generated 246 characters of unexpected output during activation. If you notice “headers already sent” messages, problems with syndication feeds or other issues, try deactivating or removing this plugin.

    https://www.ads-software.com/plugins/ce-wp-menu-per-page/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter arudd

    (@arudd)

    I turned off debug and the errors went away

    With debug off it is working, but how to fix with debug on?

    If you go to Ce_Wp_Menu_Per_Page.php file you will see there is a class declared

    class Ce_Wp_Menu_Per_Page {
       ...
    }

    and a constructor declared

    function __construct() {
       ...
    }

    Just before that constructor you will see a function that has same name as class name.

    function Ce_Wp_Menu_Per_Page() {
        self::__construct();
    }

    You need to remove this function or comment it.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Strict Standards Error’ is closed to new replies.