Полное отключение иконок OceanWP: SVG, Simple Line Icons
function disable_all_oceanwp_icons() {
// Ocean SVG Icons (подключаются как 'oceanwp-svg-icons')
wp_dequeue_style('oceanwp-svg-icons');
wp_deregister_style('oceanwp-svg-icons');
// Simple Line Icons
wp_dequeue_style('simple-line-icons');
wp_deregister_style('simple-line-icons');
// Также удалим скрипты, если они есть (редко, но бывает)
wp_dequeue_script('oceanwp-svg-icons');
wp_deregister_script('oceanwp-svg-icons');
}
add_action('wp_enqueue_scripts', 'disable_all_oceanwp_icons', 20);
Принудительно подключаем Font Awesome на всех страницах
function force_font_awesome_everywhere() {
if (!wp_style_is('oceanwp-font-awesome', 'enqueued')) {
wp_enqueue_style('oceanwp-font-awesome');
}
}
add_action('wp_enqueue_scripts', 'force_font_awesome_everywhere', 5);