Hi,
Fantastic demo pages! But how can I copy contents, elements from the demo pages to a new page? I tried to switch to Default Editor, then Text but nothing shows up there.
Please help!
thanks,
Hi,
You can save any page layout as template and then load it when creating a new page.
Regards,
Yigit
Thank you Yigit. That works for a template.
How about if I want to copy only part of the a page? For instance, only to copy the testimonial part from one page to another? Or FAQ? I wouldn’t want to re-type everything from scratch if the content is already available.
Thanks,
Hey,
You can switch the Avia Builder to debug mode. You will see the actual shortcode below the Advance Layout 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";
}
You can now copy parts of the template. :)
Regards,
Ismael
Thank you, Ismael. Do I need to remove it once finish editing the codes/pages?
Hey,
No, you don’t need to remove it. It will give you more control over your templates. :)
Cheers,
Ismael
Ah, I see, it opens a window below the builder and has all the text in it. Pretty cool.
Just need to make sure that I don’t mess up with it.
thanks,