Hi,
After laying out the Avia builder elements in a page, I expect to see the shortcode version when I switch back to default text editor, but the editor is blank. How can I access the produced shortcodes so that I can reuse them around the theme ?….I know the option of “Save as template” is available ,but that doesn’t do it for me.
Appreciate your feedback.
Thanks,
Chenan
Hi Chenan!
You can’t switch between the Default and the Advance Layout Builder. You need to decide which one you want to use for the page. Please switch your theme to debug mode if you want to see the actual shortcode below the Avia Builder. 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";
}
Best regards,
Ismael