• Hello everyone.

    I need help.
    I have a vvery basic understanding of coding!! Extremelly basic.. As in, I know how to make a form on my wordpress site. Any Way I need help like ASAP!!!

    This messgae is appearing at the top of my webpage:

    Strict Standards: Declaration of crum_clean_walker::start_lvl() should be compatible with Walker_Nav_Menu::start_lvl(&$output, $depth = 0, $args = Array) in /home/breeze2/public_html/wp-content/themes/OneTouch2/library/inc/extensions/menus.php on line 220

    The site is “www.jhbstudents.co.za”

    I think i broke my website!!! Please can some one explain to me in basic terms, how to fix this problem, I feel like crying :'(

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello! I recommend asking your question at the official support channel for the OneTouch2 theme, so the developers and support community can help you with your issue.

    http://support.crumina.net

    Strict Standards: Declaration of crum_clean_walker::start_lvl() should be compatible with Walker_Nav_Menu::start_lvl(&$output, $depth = 0, $args = Array) in /home/breeze2/public_html/wp-content/themes/OneTouch2/library/inc/extensions/menus.php on line 220

    I’ve highlighted the impprtant part.

    When you’re extending an object you need to look at the arguments that are being passed to the functions that you’re using. In your case when you’ve created your new class you haven’t copied the correct agruments into the functions parameters, so that error is thrown. You’ll need to change your function to be like this…

    function start_lvl(&$output, $depth = 0, $args = Array) {
    
    }
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘I need help!!! Strict standards: Declaration of Crum_Clean_Walker’ is closed to new replies.