This thread is resolved. Here is a description of the problem and solution.
Problem:
Translation Priority still translating even when set as not translatable.
Solution:
If you're experiencing this issue, we recommend adding the following code to your theme's functions.php file:
/** * Remove translation priority taxonomy from the job. * * @see wpmlsupp-11299 */ add_filter('get_translatable_taxonomies', function($taxs){ $key = isset($taxs['taxs']) ? array_search('translation_priority', $taxs['taxs'], false) : false; if (!empty($key)) { unset($taxs['taxs'][$key]); } return $taxs; }, 100);
After adding this code, update the original post/page and then send it from TM. You should not see the term to translate, and this will also prevent the creation of new terms.
Please note that this solution might be irrelevant if it's outdated or not applicable to your case. We highly recommend checking related known issues at https://wpml.org/known-issues/, verifying the version of the permanent fix, and confirming that you have installed the latest versions of themes and plugins. If the issue persists, please open a new support ticket at WPML support forum.
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.