Support Forum

For all questions related to themes and plugins!

Enter search keyword e.g. "footer color".

  • Registration is Required

    Registration is required to post questions to support forum. ThemeForest buyers also need to obtain Purchase code to be able to post on forum.

    Please read here how to obtain Purchase code.

#3376
Vladimir
Keymaster

Hello Ozan,

Content won’t be copied because PolyLang has specific way of copying text for translation.
But there is simple way to duplicate your page. When you click on plus-icon and new page opens, use Prebuilt layouts to import all content from English version of the page.

Before doing this you will need to update one line in Content Manager because it seems that PolyLang changed the way of duplicating pages so there is one compatibility issue.
Open “wp-content / plugins / content-manager / content-manager.php”. Find code below (near line 710):

$pages = get_posts(array(
        'post_type' => $post_types,
        'post_status' => array('publish', 'draft'),
        'numberposts' => 200
    ));

And change to this:

$pages = get_posts(array(
        'post_type' => $post_types,
        'post_status' => array('publish', 'draft'),
        'numberposts' => 200,
        'lang' => '' // Compatibility with PolyLang
    ));

Vladimir