The client is experiencing a PHP deprecation warning on custom post type pages when using the WPML SEO plugin with PHP version 8.3.19. The error message appears under the header, as indicated in the debug log.
Solution:
We have identified that this issue stems from a compatibility problem with PHP 8.3.19. Although this warning does not affect the functionality of the plugin or the site, it can be visually disruptive. We recommend disabling the debug mode in WordPress to prevent such warnings from being displayed. You can do this by editing your wp-config.php file and ensuring the following line is included:
define('WP_DEBUG_DISPLAY', false);
For more details on managing debug mode in WordPress, please refer to this article: Debugging in WordPress.
Please note that this solution might become irrelevant if it's 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.
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: 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.