ليس لدى هذا المستخدم أي مواضيع مفضلة.
مواضيع المنتدى المفضلة
مواضيع المنتدى التي تم إنشاؤها
| الحالة |
الموضوع
|
داعم | الأصوات | المشاركات | الحداثة |
|---|---|---|---|---|---|
|
Plugin for product schema
1
2
بدأه: alexZ-17 في: English Support |
|
1 | 16 | قبل 1 ساعة، 45 دقيقة | |
|
Your site has no credits for AI translation.
1
2
3
بدأه: alexZ-17
في: English Support
Problem: If the problem persists or the solution seems outdated or irrelevant, we 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 needed, please open a new support ticket at WPML support forum for further assistance. |
|
0 | 36 | قبل 1 شهر، 4 أسابيع | |
|
Unusual Email
بدأه: alexZ-17
في: English Support
Problem: If this solution does not resolve your issue or seems irrelevant due to being 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 problem persists, please open a new support ticket at WPML support forum. |
|
0 | 10 | قبل شهرين، 1 أسبوع | |
|
Automatic image and media detection
1
2
بدأه: alexZ-17
في: English Support
Problem: Solution: sp_wpcp_shortcode_options sp_wpcp_upload_options Additionally, it's important to verify that carousels are set to be translatable in WPML settings. For further guidance on translating custom posts and custom fields, please refer to the following documentation: Please note that this solution might be 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 the issue continues, please open a new support ticket at WPML support forum. |
|
1 | 24 | قبل 3 أشهر، أسبوعين | |
|
Automatically translate Alt text for images
بدأه: alexZ-17
في: English Support
Problem: If this solution does not resolve your issue or seems irrelevant due to outdated information or a different case scenario, 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 problem persists, please open a new support ticket at WPML support forum. |
|
1 | 7 | قبل 4 أشهر، 1 أسبوع | |
|
Renewal of account
بدأه: alexZ-17 في: English Support |
|
0 | 4 | قبل 4 أشهر، 3 أسابيع | |
|
WPML Multilingual CMS update failed on the development
بدأه: alexZ-17
في: English Support
Problem: If this solution does not resolve your issue or seems outdated, we 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 problems persist, please open a new support ticket. |
|
0 | 15 | قبل 6 أشهر، 1 أسبوع | |
|
New problems with the case “Noindex Tag in translations omitted” (resolved) -HCFM plugin
بدأه: alexZ-17 في: English Support |
|
1 | 4 | قبل 7 أشهر، 3 أسابيع | |
|
Missing paragraph in original for translation in some languages
بدأه: alexZ-17
في: English Support
Problem: Please note that this solution might be 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 the problem persists, do not hesitate to open a new support ticket at WPML support forum. |
|
0 | 7 | قبل 7 أشهر، 3 أسابيع | |
|
Split: Translations are mixed up
بدأه: alexZ-17
في: English Support
Problem: If this solution does not resolve your issue, or if it seems outdated or irrelevant 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 problems continue, please open a new support ticket at WPML support forum. |
|
0 | 9 | قبل 11 شهر، 3 أسابيع | |
|
Translating of AltTexts for images included through WP-Carousel not possible
1
2
بدأه: alexZ-17
في: English Support
Problem: Please note that this solution might be outdated or not applicable to your specific case. If this solution does not resolve your issue, 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 you still need assistance, please open a new support ticket at WPML support forum. |
|
1 | 25 | قبل 11 شهر، 4 أسابيع | |
|
Noindex Tag in translations omitted
1
2
بدأه: alexZ-17
في: English Support
Problem: .../wp-content/plugins/header-footer-code-manager/99robots-header-footer-code-manager.php file. Look for line 550 Replace:
case 's_pages':
$is_not_empty_s_pages = self::hfcm_not_empty( $scriptdata, 's_pages' );
if ( $is_not_empty_s_pages ) {
// Gets the page ID of the blog page
$blog_page = get_option( 'page_for_posts' );
// Checks if the blog page is present in the array of selected pages
if ( in_array( $blog_page, json_decode( $scriptdata->s_pages ) ) ) {
if ( is_page( json_decode( $scriptdata->s_pages ) ) || (!is_front_page() && is_home()) ) {
$out = self::hfcm_render_snippet( $scriptdata );
}
} elseif ( is_page( json_decode( $scriptdata->s_pages ) ) ) {
$out = self::hfcm_render_snippet( $scriptdata );
}
}
break;
With:
case 's_pages':
$is_not_empty_s_pages = self::hfcm_not_empty( $scriptdata, 's_pages' );
if ( $is_not_empty_s_pages ) {
// WPML workaround for compsupp-7802
$original_ids = json_decode( $scriptdata->s_pages);
foreach ( $original_ids as $original_id ) {
$translated_ids[] = apply_filters( 'wpml_object_id', $original_id, 'page');
}
// Gets the page ID of the blog page
$blog_page = get_option( 'page_for_posts' );
// Checks if the blog page is present in the array of selected pages
if ( in_array( $blog_page, json_decode( $scriptdata->s_pages ) ) ) {
if ( is_page( $translated_ids ) || (!is_front_page() && is_home()) ) {
$out = self::hfcm_render_snippet( $scriptdata );
}
} elseif ( is_page( $translated_ids ) ) {
$out = self::hfcm_render_snippet( $scriptdata );
}
}
break;
This modification ensures that the noindex tag is applied to translated pages as well. If this solution does not resolve your issue or seems outdated, please check the related known issues and confirm that you have installed the latest versions of themes and plugins. If necessary, do not hesitate to open a new support ticket. |
|
1 | 17 | قبل 1 سنة، شهرين | |
|
A Header from the source of the transaltion was ommited
1
2
بدأه: alexZ-17
في: English Support
Problem: If this solution does not resolve your issue or seems outdated, 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. |
|
1 | 21 | قبل 1 سنة، شهرين | |
|
Setting a main menu with an FSE theme
بدأه: alexZ-17
في: English Support
Problem: |
|
0 | 16 | قبل 1 سنة، 3 أشهر | |
|
Translation in progress
1
2
بدأه: alexZ-17
في: English Support
Problem: Please note that this solution might be 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 the issue persists, please open a new support ticket at WPML support forum for further assistance. |
|
0 | 16 | قبل 1 سنة، 3 أشهر |