Disable Google Fonts on the front-end when using Convert Pro

Disable Google Fonts on the front-end when using Convert Pro on child sites.

Snippet Type

Execute on Child Sites

Snippet

function cp_remove_google_font( $style_id ) {

// your custom logic
$load_font = false;
return $load_font;
}

add_filter( 'cpro_disable_google_font', 'cp_remove_google_font', 10, 1 );
1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.