WPML
Status
Resolvido pelo autor
Resolvido em
Themify Ultra 8.0.1
Plugin/tema relacionado
Themify Ultra
Tags de tópico
Compatibility

Visão geral do problema

Ao traduzir uma página usando o WPML com o módulo Feature Content no tema Themify Ultra, o texto ALT das imagens não é traduzido no front-end.

Solução alternativa

Por favor, certifique-se de ter um backup completo do seu site antes de prosseguir.


  • Abra o arquivo …/wp-content/themes/themify-ultra/themify/themify-builder/classes/class-themify-builder-model.php.

  • Procure a linha 357.

  • Substitua:
        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 '';
        }
            


  • Por:
        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 '';
        }
            

Todos os problemas conhecidos →