このユーザーにはお気に入りのトピックがありません。
お気に入りのフォーラムトピック
作成したフォーラムトピック
| ステータス |
トピック
|
サポーター | 声 | 投稿 | 新着度 |
|---|---|---|---|---|---|
|
WPML not translating in Global Link / Transperfect
開始者:BlogAdmin カテゴリ:English Support |
|
0 | 9 | 6ヶ月、 2週前 | |
|
Gutenberg Blocks Non-Synced Pattern with Overrides not translating
開始者:BlogAdmin カテゴリ:English Support |
0 | 2 | 9ヶ月前 | ||
|
Navigation Translations not showing properly – Transperfect/GlobalLink/Translation.com
開始者:BlogAdmin
カテゴリ: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年、 2ヶ月前 | |
|
Request Language Mapping
開始者:BlogAdmin カテゴリ:English Support |
|
0 | 13 | 1年、 2ヶ月前 | |
|
Request Language Mapping Not Solved
開始者:BlogAdmin カテゴリ:English Support |
|
1 | 6 | 1年、 3ヶ月前 | |
|
Request Language Mapping
開始者:BlogAdmin カテゴリ:English Support |
|
0 | 7 | 1年、 4ヶ月前 |