Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author John Gardner

    (@jgardner03)

    Hi,

    Thanks for using my plugin. If you’d like to use a more recent version of FontAwesome, please add the following to your theme’s functions.php:

    add_filter( 'arconix_fontawesome_css', 'new_fa_version' );
    function new_fa_version( $args ) {
        $args['url'] = 'https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css',
        $args['ver'] = '4.4.0';
    
        return $args;
    }

    Should a new version of fontawesome be released but my plugin hasn’t been updated, just change the version in the url and ver variables and you’ll be all set.

    Thread Starter ramonjosegn

    (@ramonjosegn)

    OK, thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘I like me update for Font Awesome icons’ is closed to new replies.