Could you explain how I can clone an existing page or make copies of pages that currently exist for the Enfold theme?
Thank you very much
Hi,
You can Import the Dummy data again.
Or
You use this plugin http://wordpress.org/plugins/duplicate-post/.
Or
Using the Advance Layout Editor, you can save a template and reuse it. Look for Avia Layout Builder, at the bottom right click Templates.
Regards,
Ismael
Different method:
– First, browse to config-templatebuilder/
– Second, open up config.php
– Third, scroll down to
$builder->setMode( 'safe' );
and change to
$builder->setMode( 'debug' );
This adds a textarea to each page/post/cpt where you may copy the whole shortcode layout and reuse it.
Simply paste the code into the regular MCE and switch to builder.
Thanks a lot Ishmael and Formateins. That worked.
Hi,
@formateins: Thanks for the tip.
Or you can add this on your functions.php
//set builder mode to debug
add_action('avia_builder_mode', "builder_set_debug");
function builder_set_debug()
{
return "debug";
}
Cheers,
Ismael