• Resolved David

    (@brigdonnwr)


    Hi, I’m trying to create an elegant website which doesn’t track my visitors. Harder than you might think, as there are plenty of third-party cookies that need finding.

    One of them is within the getwid plugin; could you let me know whether there’s a way to prevent the plugin calling the fontawesome-free-css?

    Thankyou!

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Contributor motopress

    (@motopress)

    @brigdonnwr

    You can deregister Font Awesome with the next code

    
    add_action( 'getwid/icons-manager/init', function ($icon_manager){
    
    	$icon_manager->deregisterFont('fontawesome');
    
    } );
    
    Thread Starter David

    (@brigdonnwr)

    Thankyou! Could you let me know which file I should put it in please? I really appreciate your support ??

    Ivan Lutrov

    (@ivanlutrov)

    Either add it to your child theme’s functions.php file or alternatively in a custom plugin, like this example.

    Plugin Support dimned

    (@dimned)

    Thanks @ivanlutrov you are right.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Remove ‘font awesome’ functionality’ is closed to new replies.