Get Started
FunnelKit Documentation
Get unstuck with our helpful reference material

FunnelKit Automations

Add Google Fonts to Enhanced Visual Email Builder

Ensure consistency by matching your website’s typography in emails using Google fonts.

Here’s how you can add Google fonts to FunnelKit Automations’ enhanced visual email builder.

We’ll take the example of the “Catamaran” font.

Adding the Snippet to the Website

add_filter(
	'bwfan_block_editor_google_fonts',
	function( $fonts ) {
		$fonts[] = 'Catamaran';
		return $fonts;
	}
);

Here, we’ve used the lite version of the Code Snippets plugin.

Adding the snippet

Once done, save the changes and activate to run this snippet on your website.

Testing the Font inside the Visual Email Builder

Open the visual email builder inside FunnelKit Automations.

Select any text, and you’ll see the “Catamaran” font.

Testing the google font inside visual email builder

You can do this with any Google font. 

Just replace the snippet with the font that matches your website’s typography and activate it.

This is how you can add Google fonts to FunnelKit Automations’ enhanced visual email builder.

chevron-down