Elementor: Disable Default Typography Presets
Stops Elementor from loading its built-in typography presets so the active theme's font stack is not overridden.
PHPby SnipCraft
php
<?php
/**
* Disable Elementor's default typography/font presets via an option filter.
* This is a read-only override; the Elementor settings panel may still
* show the toggle as unchecked, but the preset loading is bypassed.
*/
add_action( 'plugins_loaded', function() {
if ( ! defined( 'ELEMENTOR_VERSION' ) ) {
return;
}
add_filter( 'pre_option_elementor_disable_typography_schemes', function() {
return '1';
} );
} );#branding#design#elementor#fonts#typography