Advanced Customizations

Below you’ll find advanced customizations. These customizations can be added to a child theme functions.php file, a custom plugin, or the Code Snippets plugin.

Prevent the Widgets Bundle From Importing Google Fonts

add_filter( 'siteorigin_web_font_url', function( $url ) {
	return false;
} );

Switch Web Font Provider from Google to Bunny Fonts

Bunny Fonts is GDPR compatible.

add_filter( 'siteorigin_web_font_url', function( $url ) {
	return 'https://fonts.bunny.net/css';
} );