Font Awesome
Wie kann man Font Awesome entfernen?
- Man geht in die Datei functions.php des Templates und fügt Folgendes ein:
add_action( 'elementor/frontend/after_register_styles',function() {
foreach( [ 'solid', 'regular', 'brands' ] as $style ) {
wp_deregister_style( 'elementor-icons-fa-' . $style );
}
}, 20 );



