Is there a way to take content areas from one page to another from within the editing areas – or to make a copy of a whole page, give it a new name and then change the details? many thanks
Hi fourdesigncornwall!
Please switch your theme to debug mode. Edit function.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 builder. You can copy those shortcodes on another page.
Best regards,
Ismael