למשתמש זה אין נושאים מועדפים.
נושאי פורום מועדפים
נושאי פורום שנוצרו
| סטטוס |
נושא
|
תומך | קולות | פוסטים | עדכניות |
|---|---|---|---|---|---|
|
Implementing LLMs.txt
נפתח על ידי: Marketing Tech ב: Chat Support |
|
0 | 2 | לפני חודש 4, שבוע 1 | |
|
504 Gateway Timeout Error When Adding Menu Item with WPML
נפתח על ידי: Marketing Tech
ב: English Support
Problem: If you're experiencing a 504 Gateway Timeout error when trying to add a new item to a translated menu using WPML, it might be due to a temporary glitch, cache conflicts, a stuck translation process, or a problem with the menu structure. Solution: We recommend the following steps to troubleshoot and potentially resolve the issue: 1. Disable all other plugins except WPML to check if there is a compatibility issue with another plugin. If these steps do not resolve the issue, it might have been a temporary glitch. Deactivating and reactivating plugins can act as a soft reset, which might help clear any blocks in the process. Please note that this solution might be irrelevant if it's outdated or not applicable to your case. If the problem persists, we highly recommend checking related known issues at WPML known issues, verifying the version of the permanent fix, and confirming that you have installed the latest versions of themes and plugins. If needed, do not hesitate to open a new support ticket with us for further assistance. |
|
1 | 5 | לפני חודש 4, שבוע 2 | |
|
Arabic Language – RTL Display
נפתח על ידי: Marketing Tech
ב: English Support
Problem: /**
* Force RTL direction for the custom Arabic‑Egypt (ar‑eg) language.
* Adjust the body/html tag direction when WPML's current language is ar-eg.
*/
add_filter( 'language_attributes', function ( $output ) {
// Get WPML's current language code
$current_lang = apply_filters( 'wpml_current_language', null );
// If we're on ar-eg and dir="rtl" is not already in the attributes, add it
if ( 'ar-eg' === $current_lang && false === stripos( $output, 'dir=' ) ) {
// Remove any existing dir attribute just in case, then append rtl
$output = preg_replace( '/\sdir=("|\")(rtl|ltr)\1/i', '', $output );
$output .= ' dir="rtl"';
}
return $output;
}, 20 );
We recommended that the client ensure they have a backup before implementing this snippet as it was not tested directly. 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 further assistance is needed, please open a new support ticket at WPML support forum. |
|
1 | 6 | לפני חודש 4, שבוע 3 | |
|
WPML SEO
נפתח על ידי: Marketing Tech ב: English Support |
|
0 | 2 | לפני חודש 4, שבוע 3 | |
|
Schema
נפתח על ידי: Marketing Tech ב: Chat Support |
|
1 | 2 | לפני חודש 5 | |
|
Guidance on Translating FAQ Schema in ATE – Reopening the ticket
נפתח על ידי: Marketing Tech
ב: English Support
Problem: If this solution does not apply to your case, or if it 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 | 4 | לפני חודש 6 | |
|
Guidance on Translating FAQ Schema in ATE
נפתח על ידי: Marketing Tech
ב: English Support
Problem: If this solution does not apply to your case, or if it 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. Should you need further assistance, please do not hesitate to open a new support ticket at https://wpml.org/forums/forum/english-support/. |
|
0 | 2 | לפני חודש 6, שבוע 2 | |
|
Issue with Marketo Forms Returning to Default Language (EN) on Website
נפתח על ידי: Marketing Tech ב: English Support |
1 | 3 | לפני חודש 8 | ||
|
WP editor opening instead of ATE when editing post translation
נפתח על ידי: Marketing Tech ב: Chat Support |
|
0 | 2 | לפני חודש 8, שבוע 1 | |
|
WPML could not load configuration files, which your sites needs.
נפתח על ידי: Marketing Tech ב: English Support |
0 | 2 | לפני חודש 9, שבוע 1 | ||
|
WPML tried to translate this page three times and failed
נפתח על ידי: Marketing Tech ב: English Support |
|
0 | 7 | לפני חודש 10, שבוע 2 | |
|
WPML tried to translate this page three times and failed
נפתח על ידי: Marketing Tech ב: Chat Support |
|
1 | 2 | לפני חודש 10, שבוע 2 | |
|
Displaying pages in other languages in my default language page
נפתח על ידי: Marketing Tech
ב: English Support
Problem: // Perform your WP_Query with suppress_filters set to true
$query = new WP_Query( array(
'post_type' => 'post', // Or your custom post type
'posts_per_page' => -1, // Show all posts
'suppress_filters' => true, // Disable WPML language filtering
) );
// Apply the 'the_posts' filter manually to get posts in all languages
if ( $query->have_posts() ) {
$all_posts = apply_filters_ref_array( 'the_posts', array( $query->posts, $query ) );
// Now $all_posts will contain all posts from all languages
$query->posts = $all_posts;
}
// Loop through and display the posts
if ( $query->have_posts() ) {
while ( $query->have_posts() ) {
$query->the_post();
// Your loop code (e.g., the_title(), the_content(), etc.)
}
}
// Don't forget to reset post data after the loop
wp_reset_postdata();
Please note that this solution is a custom workaround and was not extensively tested. If this solution does not work or seems outdated, or if it does not apply 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 | 8 | לפני חודש 11, שבוע 2 | |
|
Support Needed for Retaining Translations in ATE After Category Changes
נפתח על ידי: Marketing Tech ב: English Support |
|
0 | 10 | לפני שנה 1 | |
|
Registering New WP Instance
נפתח על ידי: Marketing Tech
ב: English Support
Problem: If this solution does not apply to your case, or if it 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. Should you need further assistance, please do not hesitate to open a new support ticket. |
|
0 | 4 | לפני שנה 1 |