Hi, if using local fonts, it’s still possible to select non-local fonts (Google Fonts) for each single element, right?
So now it’s not GDPR save, because other users in a wp installation might not know, that they always need to use the checkbox for each element.
I work with many customers with basic knowledge and I need to make sure, I can give them a website that is GDPR save.
Can you please provide a solution, so we can disable the dropdown and loading for Google Fonts global?
Some snippet to disable the feature would really help.
examples: (not working, just for demo)
add_action( ‘wp_enqueue_scripts’, function() { wp_dequeue_style( ‘greenshift-fonts’ ); } );
add_action( ‘admin_init’, function() { add_filter( ‘greenshift_google_fonts_array’, ‘__return_empty_array’ ); } );
thanks a lot!