Created
December 8, 2020 10:15
-
-
Save yousufansa/20f2dad7a3ef06e32507bce1229fc57c to your computer and use it in GitHub Desktop.
Electro - Dokan Dashboard Font Awesome Icons Missing Issue Fix
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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