Viewing 1 replies (of 1 total)
  • If Font Awesome is being loaded by something else in WP and its causing a conflict, you can disable the UAB Font Awesome by adding the following in your theme’s functions.php:

    
    // disable Ultimate Author Box plugin's version of Font Awesome
    function turn_off_uab_font-awesome() {
    	wp_dequeue_style( 'uab-fontawesome' );
    	wp_dequeue_script( 'uab-fontawesome' );
    }
    add_action( 'wp_print_styles', 'turn_off_uab_font-awesome', 100 );
    
Viewing 1 replies (of 1 total)

The topic ‘Font Awesome Conflicts’ is closed to new replies.