Skip Navigation

This is the technical support forum for WPML - the multilingual WordPress plugin.

Everyone can read, but only WPML clients can post here. WPML team is replying on the forum 6 days per week, 22 hours per day.

Sun Mon Tue Wed Thu Fri Sat
- 9:00 – 14:00 9:00 – 14:00 9:00 – 14:00 9:00 – 14:00 9:00 – 14:00 -
- 19:00 – 22:00 19:00 – 22:00 19:00 – 22:00 19:00 – 22:00 19:00 – 22:00 -

Supporter timezone: Europe/Paris (GMT+02:00)

This topic contains 6 replies, has 2 voices.

Last updated by Yvette 1 year, 8 months ago.

Assisted by: Yvette.

Author Posts
July 24, 2023 at 1:42 pm #14089915

christianS-199

custom fields are not copied. all custom fields are empty on english. (DE-EN)

how to scan all custom fields and copy again?

the setting made correctly checked.

tra.png
July 24, 2023 at 5:06 pm #14091675

Yvette
Supporter

Languages: English (English ) Spanish (Español )

Timezone: Europe/Paris (GMT+02:00)

Hello,

I will be helping you.

On your screenshot, if you select the option "Show System Fields" under the title "Custom Fields Translation", you will get some more fields that appear.

Please try checking if there is a system field (they begin with an underscore "_" ) of the same name as the ones you have checked appear. If they do, please try selecting these as "Copy" as well.

You can think of these as being the "buckets" for the field values that you have already marked previously as "Copy".

If you find them and mark them as "Copy", then go back to your post type and make a small change in one and resave the post type. Please now check if the fields copied over. Without the "system" custom field that begins with an underscore, the copied VALUE that you have already marked as "copy" has no where to go.

I wait for your feedback on this.

July 31, 2023 at 10:01 am #14125777

christianS-199

"go back to your post type and make a small change in one and resave the post type"

there is hundreds of articles on the site has custom fields.

and custom fields name HAS TO BE SAME I don't want use different custom field name for it.

July 31, 2023 at 10:14 am #14125955

Yvette
Supporter

Languages: English (English ) Spanish (Español )

Timezone: Europe/Paris (GMT+02:00)

I'm understand you're concern about having to do this for many posts.

Could we please first focus on if these steps resolves the issue on one post...and then we can see how to apply these "in batch".

That's ok for the custom field names to be the same. What concern do you have about this? Making a "small change" is only to trigger the system to reread the translatable custom fields. The "change" can be anywhere on the post content.

July 31, 2023 at 10:18 am #14125963

christianS-199

so is there a WPML function that I can get untranslated original custom field content?

I know PHP I think this is the best path to go with this.

we cant just open every post one by one that is madness 😀

July 31, 2023 at 10:34 am #14126069

christianS-199

looks like I can write something like this.

is this ok ?

$args = array(
    'post_type'      => 'post', // or any custom post type
    'posts_per_page' => -1,     // get all posts
    'fields'         => 'ids',  // only get post IDs
);

$post_ids = get_posts( $args );

foreach ( $post_ids as $post_id ) {
    do_action( 'wpml_sync_all_custom_fields', $post_id );
}


ofc this will only work ones later on new posts problem will continue I need wpml to sync custom fields automatically.

ok this will work for each post saved and synced when needed...
will try it later I have time.

function sync_custom_fields_on_save( $post_id ) {
    // If this is just a revision, don't sync.
    if ( wp_is_post_revision( $post_id ) )
        return;

    do_action( 'wpml_sync_all_custom_fields', $post_id );
}
add_action( 'save_post', 'sync_custom_fields_on_save' );
July 31, 2023 at 11:23 am #14126419

Yvette
Supporter

Languages: English (English ) Spanish (Español )

Timezone: Europe/Paris (GMT+02:00)

Hello

Disclaimer: I'm not a PHP programmer.

I see that you are adding an action to sync fields on save.

You still need to make this custom field Translatable which involves setting, as I originally commented, the system custom field to be "translate".

So please test your code and the settings on a single test case before applying to all of your post types.

The topic ‘[Closed] custom fields are not copied. how to scan all custom fields and copy?’ is closed to new replies.