Elementor Pro 2.7: Custom Fonts `font-display` support - Elementor Developers

PHOTO EMBED

Thu Dec 21 2023 03:24:13 GMT+0000 (Coordinated Universal Time)

Saved by @naunie

add_filter( 'elementor_pro/custom_fonts/font_display', function( $current_value, $font_family, $data ) {
	if ( 'Lobster' === $font_family ) {
		$current_value = 'block';
	}
	return $current_value;
}, 10, 3 );
content_copyCOPY

can use that to set different values based on your needs, ex, change only font family named ‘Lobster’ font-display to block:

https://developers.elementor.com/elementor-pro-2-7-custom-fonts-font-display-support/