Scripts

Class Scripts.


Source

File: src/Tribe/Compatibility/Divi/Scripts.php

class Scripts {

	/**
	 * Disable Divi jQuery Body on Single Events.
	 *
	 * @since 5.3.1
	 *
	 * @param bool $enabled Whether to disable the jQuery body.
	 *
	 * @return bool Whether to disable the jQuery body.
	 */
	public function disable_jquery_body( $enabled ) {
		if ( ! is_singular( \Tribe__Events__Main::POSTTYPE ) ) {
			return $enabled;
		}

		return false;
	}
}

Top ↑

Changelog

Changelog
Version Description
5.3.1 Introduced.

Top ↑

Methods