Home › Forums › WoodMart support forum › FontAwesome Loaded Twice FontAwesome Loaded Twice This topic has 3 replies, 2 voices, and was last updated 6 years, 10 months ago by Artem Temos. Viewing 4 posts - 1 through 4 (of 4 total) Author Posts October 5, 2018 at 10:30 pm #81241 JoeParticipant Hey! I noticed that when using a WP Bakery button in my page and adding an icon to the button, it loads FontAwesome twice. (See attached) Any way to prevent this? Thank you! Attachments:You must be logged in to view attached files. October 6, 2018 at 10:36 am #81292 Artem TemosKeymaster Hi, Try to add the following PHP code snippet to the child theme functions.php file to do this add_action( 'wp_enqueue_scripts', 'woodmart_child_enqueue_styles', 20000 ); function woodmart_child_enqueue_styles() { wp_dequeue_style( 'font-awesome-css' ); } Regards October 6, 2018 at 3:12 pm #81348 JoeParticipant Thank you. Not a great option, since I use those icons on other pages where WP Bakery is not loading Font Awesome because I do not have anything in the page content that requires it. I’ll live with it for now, thank you. October 7, 2018 at 9:42 am #81425 Artem TemosKeymaster You are welcome. Author Posts Viewing 4 posts - 1 through 4 (of 4 total) You must be logged in to create new topics. Login / Register