Hi there,
is it possible to copy/paste e.g. a “color section” to another page or portfolio entry? Or to create like a “custom section” which can be inserted into existing pages? Would be helpful if the client needs a certain section on every page AFTER the pages have all been build. What happened to me … ;)
I only now see the possibility to create that section with the Advanced Layout Editor on every single page.
Thx!
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
Works like a charm! Thx, Ismael!