Skip to content

Instantly share code, notes, and snippets.

@yousufansa
Created December 8, 2020 10:15
Show Gist options
  • Save yousufansa/20f2dad7a3ef06e32507bce1229fc57c to your computer and use it in GitHub Desktop.
Save yousufansa/20f2dad7a3ef06e32507bce1229fc57c to your computer and use it in GitHub Desktop.
Electro - Dokan Dashboard Font Awesome Icons Missing Issue Fix
if ( ! function_exists( 'ec_child_enqueue_dokan_fontawesome' ) ) {
function ec_child_enqueue_dokan_fontawesome() {
if ( function_exists( 'is_dokan_activated' ) && is_dokan_activated() ) {
wp_enqueue_style( 'dokan-fontawesome' );
}
}
}
add_action( 'wp_enqueue_scripts', 'ec_child_enqueue_dokan_fontawesome', 12 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment