can the template be exported from inbuilt avia template builder , or where it is saved ?
Hey 7thflow!
There’s no export feature but you can activate the debug mode to access the raw shortcode data. Afterwards you can use the debug window to copy/paste the raw shortcode data from one website to another. If you want to activate the debug mode add following php code into your child theme functions.php
//set builder mode to debug
add_action('avia_builder_mode', "builder_set_debug");
function builder_set_debug()
{
return "debug";
}
If you don’t use a child theme open up enfold/functions.php and insert the code below
if(isset($avia_config['use_child_theme_functions_only'])) return;
Cheers!
Peter
Wonderfull :-)
thanks