Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1370674

    Hi,
    Well don’t blame me a smart aleck, but sometime i’m wimpy :-) and RTFM.
    While doing so (reading the f…g manual) when trying to enable the enfold debug mode i faild
    because of a small glitch in the documentation
    I do not use a child theme so:
    https://kriesi.at/documentation/enfold/intro-to-layout-builder/#debug-mode
    if(isset($avia_config['use_child_theme_functions_only'])) return;

    here the last curly bracket is missing, that why is was not working for me.

    i found this here in forum:
    https://kriesi.at/support/topic/debug-mode-not-working-in-enfold/
    if( isset( $avia_config['use_child_theme_functions_only'] ) ) { return; }

    kind regards
    jens

    #1370693

    Hey Jens,

    Thanks for pointing that out, the debug code should be added after this code if you are not using a child theme:

    if( isset( $avia_config['use_child_theme_functions_only'] ) )
    {
    	return;
    }

    Best regards,
    Rikard

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.