WPML
Status
Gelöst
Zugehöriges Plugin/Theme
Divi

Übersicht über das Problem

Icons werden im Divi Builder nicht korrekt angezeigt.

Wenn Sie den Divi Builder verwenden und ein Blurb-Modul mit „Icons“ hinzufügen, wird die Icon-Schriftart durch die OTGS-Icon-Schriftart überschrieben. Daher werden die Icons nicht korrekt angezeigt.

Problemumgehung

Öffnen Sie die Datei /functions.php und fügen Sie direkt nach:
add_action( ‘after_setup_theme’, ‘et_setup_theme’ );

Folgendes hinzu:

function wpml_icon_fix() {
echo '<style type="text/css">.et-pb-option .et_font_icon li:before { font-family: "ETmodules"!important; content: attr(data-icon)!important; speak: none!important; font-weight: normal!important; font-variant: normal!important; text-transform: none!important; line-height: 1!important; -webkit-font-smoothing: antialiased!important; }</style>';
}
add_action( 'admin_head', 'wpml_icon_fix' );

Alle bekannten Probleme →