Astra_Dynamic_CSS::is_elementor_default_color_font_comp()

For existing users, do not provide Elementor Default Color Typo settings compatibility by default.


Description


Return

(boolean) true if elementor default color and typo setting should work with theme, False if not.


Source

File: inc/class-astra-dynamic-css.php

		public static function is_elementor_default_color_font_comp() {
			$astra_settings                                        = get_option( ASTRA_THEME_SETTINGS );
			$astra_settings['ele-default-color-typo-setting-comp'] = ( isset( $astra_settings['ele-default-color-typo-setting-comp'] ) && false === $astra_settings['ele-default-color-typo-setting-comp'] ) ? false : true;
			return apply_filters( 'astra_elementor_default_color_font_comp', $astra_settings['ele-default-color-typo-setting-comp'] );
		}

Changelog

Changelog
Version Description
2.3.3 Introduced.


User Contributed Notes

You must log in before being able to contribute a note or feedback.