This user has no favorite topics.
Favorite Forum Topics
Forum Topics Created
מצב |
Topic
|
Supporter | Voices | פוסטים | Freshness |
---|---|---|---|---|---|
Navigation Translations not showing properly – Transperfect/GlobalLink/Translation.com
Started by: BlogAdmin
in: English Support
Problem: You are experiencing issues with the Header and Footer not translating correctly on your production site when using Transperfect/GlobalLink/Translation.com. The elements are showing incorrect language tags and the translations are not appearing as expected. Solution: We discovered that all the templates, patterns, blocks, and template part translations were set as drafts, which caused the translation errors. To resolve this, you can use the following custom code snippet to publish all these draft items: function publish_all_custom_post_types() { $post_types = ['wp_block', 'wp_template', 'wp_template_part', 'wp_navigation']; // List of post types to update foreach ($post_types as $post_type) { $args = array( 'post_type' => $post_type, 'post_status' => 'draft', 'posts_per_page' => -1, // Get all drafts ); $draft_posts = get_posts($args); if (!empty($draft_posts)) { foreach ($draft_posts as $post) { wp_update_post(array( 'ID' => $post->ID, 'post_status' => 'publish', )); } } } } // Run the function automatically in the admin area add_action('init', function() { if (is_admin() && current_user_can('manage_options')) { publish_all_custom_post_types(); } }); We recommend using this code once and then removing it. Please ensure to perform this operation after taking a full backup of your site. If this solution does not resolve your issue or seems irrelevant due to being outdated or not applicable to your specific 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 further assistance is needed, please open a new support ticket at WPML support forum. |
|
0 | 18 | לפני חודש 1, 4 שבועות | |
Request Language Mapping
Started by: BlogAdmin in: English Support |
|
0 | 13 | לפני 2 חודשים, 2 שבועות | |
Request Language Mapping Not Solved
Started by: BlogAdmin in: English Support |
|
1 | 6 | לפני 3 חודשים, 2 שבועות | |
Request Language Mapping
Started by: BlogAdmin in: Chat Support |
|
1 | 2 | לפני 3 חודשים, 3 שבועות | |
Request Language Mapping
Started by: BlogAdmin in: English Support |
|
0 | 7 | לפני 4 חודשים |