hi,
How can I copy a page to create “Template Builder” from a base to a page located on another database (or server).
This will avoid me completely recreate the construction of a heavy page with “Template Builder”.
thank you
Regards
Hi,
Set the avia builder to debug mode. Open functions.php, find this code.
if(isset($avia_config['use_child_theme_functions_only'])) return;
Below, add this code
//set builder mode to debug
add_action('avia_builder_mode', "builder_set_debug");
function builder_set_debug()
{
return "debug";
}
You will be able to see the actual shortcode below the Advance Layout Editor. You can copy the shortcode.
Regards,
Ismael