Astra_Builder_Helper::apply_flex_based_css()

For existing users, do not apply dynamic CSS chages.


Description


Return

(boolean) true if it is an existing user , false if not.


Source

File: inc/core/builder/class-astra-builder-helper.php

	public static function apply_flex_based_css() {
		$astra_settings                      = get_option( ASTRA_THEME_SETTINGS );
		$astra_settings['is-flex-based-css'] = isset( $astra_settings['is-flex-based-css'] ) ? $astra_settings['is-flex-based-css'] : true;
		return apply_filters( 'astra_apply_flex_based_css', $astra_settings['is-flex-based-css'] );
	}

Changelog

Changelog
Version Description
3.3.0 Introduced.


User Contributed Notes

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