Problem: You are trying to translate the alt tags of images on your website using the 'media translation' menu, but after translating the page, the alt tags remain in English. Solution: We recommend you to backup your site first. Then, follow these steps: 1. Open the file
. 2. Locate line 357. 3. Replace the existing code:
public static function get_alt_by_url(string $image_url):string {
$attachment_id = themify_get_attachment_id_from_url($image_url);
if ($attachment_id && ($alt = get_post_meta($attachment_id, '_wp_attachment_image_alt', true))) {
return $alt;
}
return '';
}
with the following updated code:
public static function get_alt_by_url(string $image_url):string {
$attachment_id = themify_get_attachment_id_from_url($image_url);
// WPML Workaround for wpmlsupp-12600
if ( class_exists('Sitepress') ) {
$current_lang = apply_filters( 'wpml_current_language', NULL );
$attachment_id = apply_filters( 'wpml_object_id', $attachment_id, 'post', TRUE, $current_lang );
}
if ($attachment_id && ($alt = get_post_meta($attachment_id, '_wp_attachment_image_alt', true))) {
return $alt;
}
return '';
}
After making these changes, check the translated page and inspect the image alt texts.
Please note that this solution might be outdated or not applicable to your specific case. If the issue persists, 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 needed, please open a new support ticket at WPML support forum.
Problem: The client is experiencing an issue where the domain http://www.wintergartenalu.de redirects to ogrodyzimowe.online and displays the Polish version of the site, whereas wintergartenalu.de correctly shows the German version. The client suspects this might be related to WPML settings. Solution: We recommended initially disabling WPML to verify if the issue persists with domain redirections. If the problem continues, it suggests that the issue is with the domain configuration rather than WPML. If disabling WPML resolves the issue, the client should inform us so we can assist further. Additionally, we advised the client to contact their domain/hosting provider to ensure that the redirect from www to non-www URLs is correctly set up and to remove any existing redirects that might be causing the issue.
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. Should you need further assistance, please do not hesitate to open a new support ticket at WPML support forum.
Problem: If you're experiencing issues with internal links in your custom block theme built with ACF pointing to the original pages instead of translated pages after switching to 'Translate Everything Automatically' mode, this might be due to a known issue with link translation inside ACF blocks. Solution: We recommend translating the links manually via the WPML editor. Ensure the link field is set to translate so you can manually adjust them. Alternatively, you can try the following workaround: make a small change to the default language and then re-translate the page. For more details, you can refer to our forum post here: https://wpml.org/forums/topic/i-need-help-with-translating-acf-link-field-in-advanced-transltion-editor/#post-16709536. We are actively working on a permanent fix for this issue in upcoming versions.
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 issues persist, please open a new support ticket at our support forum.