Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #23861

    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

    #121410

    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

    #121411

    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.

    #121412

    Thanks a lot Ishmael and Formateins. That worked.

    #121413

    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

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘how to clone an existing page within the Enfold theme’ is closed to new replies.