Translation with Polylang
-
Hello,
I’m using Polylang plugin for translations but on the group fields editor for the table field the translation select option is missing so I have the label “This field is ignored” when adding a translation (I would like for it to be translated or copied once)
I have tried to add it with the filter pll_copy_post_metas:
add_filter( ‘pll_copy_post_metas’, ‘copy_metas’, 10, 2 );
function copy_metas( $metas ) { return array_merge( $metas, array( ‘my_table’,’_my_table’ ) ); }but doesn’t change anything. Printing the post meta on the published translation page I can see that field data is missing.
Can you help me solve this?
The topic ‘Translation with Polylang’ is closed to new replies.