I am using WordPress Dash icons on the menu.
hidden link
Icons are called like this
<span class="dashicons dashicons-editor-help"></span>
I am also using Plugin Organizer plugin to disable plugins on specific pages to increase page load speed.
For some reasons, WP icons are not getting loaded on the page without enabling the Toolset forms plugin. I don't need toolset forms on this page so I would like to disable it to improve page speed. The Dash icons are not related to Toolset at all.
What could be the reason for this?
Hi there,
There is nothing that I can think of that might be related. We do use the Dashicon font on Toolset forms plugin.
I also can give you the exact place that the style is enqueued:
wp-content/plugins/cred-frontend-editor/application/controllers/asset_manager.php
Line 543:
wp_enqueue_style( 'dashicons' );
But it is a standard code that WordPress suggests using to load the Dashicons.
Thank you.
I get it. I have to enqueue scripts in the theme's functions.php to make it work
Hi there,
Glad that you managed to fix the issue.
My issue is resolved now. Thank you!