- Статус
- Решено
- Связанный плагин/тема
- Divi
Обзор проблемы
Иконки отображаются некорректно в Divi Builder.
Когда Вы используете Divi builder и добавляете модуль Blurb с «Иконками», шрифт иконок переопределяется шрифтом иконок OTGS. Поэтому иконки не будут отображаться корректно.
Обходное решение
Откройте файл /functions.php и сразу после:
add_action( ‘after_setup_theme’, ‘et_setup_theme’ );
Добавьте:
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' );