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.
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
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