Your IP : 216.73.217.154


Current Path : /home/ereika83/public_html/wp-content/themes/bb-theme/classes/
Upload File :
Current File : /home/ereika83/public_html/wp-content/themes/bb-theme/classes/class-fl-compat.php

<?php
/**
 * Compatibility class.
 *
 * @since 1.6
 */
final class FLThemeCompat {

	/**
	 * Filters and actions to fix plugin compatibility.
	 */
	static public function init() {

		// Filter fl_archive_show_full to fix CRED form preview.
		add_filter( 'fl_archive_show_full', 'FLThemeCompat::fix_cred_preview' );
		add_action( 'customize_controls_enqueue_scripts', array( __CLASS__, 'tribe_select2' ) );
		add_action( 'admin_enqueue_scripts', 'FLThemeCompat::addify_tax_exempt', 11 );
	}

	/**
	 * If we are showing a CRED form preview we need to show full post always
	 * so the shortcodes will render.
	 * @since 1.6
	 */
	public static function fix_cred_preview( $show_full ) {

		if ( isset( $_REQUEST['cred_form_preview'] ) ) {
			return true;
		}
		return $show_full;
	}

	/**
	 * Deregister tribe select2, we load our own for font selection.
	 * @since 1.7.4
	 */
	public static function tribe_select2() {
		wp_deregister_script( 'tribe-select2' );
		wp_deregister_style( 'tribe-select2-css' );
	}

	/**
	 * Deregister jquery-ui when using Addify's WooCommerce Tax Exempt Plugin
	 * @since 1.7.8
	 */
	public static function addify_tax_exempt() {
		if ( class_exists( 'Addify_Tax_Exempt' ) && ( is_customize_preview() ) ) {
			wp_dequeue_script( 'jquery-ui' );
		}
	}
}