Skip to content

Instantly share code, notes, and snippets.

@temsool
Last active April 15, 2021 07:58
Show Gist options
  • Save temsool/50c98428168b4308649692ea90727e2d to your computer and use it in GitHub Desktop.
Save temsool/50c98428168b4308649692ea90727e2d to your computer and use it in GitHub Desktop.
How dequeue fontawesome elementor
<?php
add_action( 'wp_print_styles', 'dequeue_font_awesome_style' );
function dequeue_font_awesome_style() {
wp_dequeue_style( 'font-awesome' );
wp_deregister_style( 'font-awesome' );
}
?>
@temsool
Copy link
Author

temsool commented Apr 15, 2021

@jacalakie Thank you. Appreciate it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment