Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #187118

    I somehow lost the code to make the Avia Builder support box visible at the bottom of the AVIA Builder page. It is the one that displays the html for the page elements. Mike.

    #187624

    Hey mhiller!

    If you mean the debug box this is that function:

    //set builder mode to debug
    add_action('avia_builder_mode', "builder_set_debug");
    function builder_set_debug()
    {
    	return "debug";
    }

    Best regards,
    Devin

    #187626

    Thanks! Now that I know what it was called, I searched the forum and added this to the child functions.php file.

    //set builder mode to debug
    add_action('avia_builder_mode', "builder_set_debug");
    function builder_set_debug()
    {
    return "debug";
    }

    It worked great. Thanks for the support. I like using this to copy page sections from one page to another, but somehow deleted it Mike

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘AVIA Bulder Support box visible’ is closed to new replies.