Astra_Dynamic_CSS::astra_submenu_open_below_header_fix()

Check backwards compatibility CSS for loading submenu below the header needs to be added.


Description


Return

(boolean) true if submenu below header fix is to be loaded, False if not.


Source

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

		public static function astra_submenu_open_below_header_fix() {

			if ( false === astra_get_option( 'submenu-open-below-header', true ) &&
				false === apply_filters(
					'astra_submenu_open_below_header_fix',
					false
				) ) {

					return false;
			}
			return true;
		}

Changelog

Changelog
Version Description
2.1.3 Introduced.


User Contributed Notes

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