84 lines
2.2 KiB
PHP
84 lines
2.2 KiB
PHP
<?php
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Exit if accessed directly
|
|
}
|
|
|
|
/**
|
|
* Theme Compatibility for SmartMag theme
|
|
* @see http://theme-sphere.com
|
|
* @since 1.3.10
|
|
*/
|
|
class ET_Builder_Theme_Compat_SmartMag {
|
|
/**
|
|
* Unique instance of class
|
|
*/
|
|
public static $instance;
|
|
|
|
/**
|
|
* Constructor
|
|
*/
|
|
private function __construct(){
|
|
$this->init_hooks();
|
|
}
|
|
|
|
/**
|
|
* Gets the instance of the class
|
|
*/
|
|
public static function init(){
|
|
if ( null === self::$instance ){
|
|
self::$instance = new self();
|
|
}
|
|
|
|
return self::$instance;
|
|
}
|
|
|
|
/**
|
|
* Hook methods to WordPress
|
|
* @return void
|
|
*/
|
|
function init_hooks() {
|
|
$theme = wp_get_theme();
|
|
$version = isset( $theme['Version'] ) ? $theme['Version'] : false;
|
|
|
|
// Bail if no theme version found
|
|
if ( ! $version ) {
|
|
return;
|
|
}
|
|
|
|
add_action( 'et_pb_shop_before_print_shop', array( $this, 'register_shop_thumbnail' ) );
|
|
add_action( 'wp_enqueue_scripts', array($this, 'dequeue_scripts') );
|
|
}
|
|
|
|
/**
|
|
* Remove SmartMag's product thumbnail on shop module and add Divi's product thumbnail
|
|
* @since 1.3.10
|
|
* @return void
|
|
*/
|
|
function register_shop_thumbnail() {
|
|
global $wp_filter;
|
|
|
|
$item_title_hook = isset( $wp_filter['woocommerce_before_shop_loop_item_title'] ) ? $wp_filter['woocommerce_before_shop_loop_item_title'] : false;
|
|
|
|
if ( class_exists( 'Bunyad' ) && null !== Bunyad::get('smart_mag') && isset( Bunyad::get('smart_mag')->woocommerce ) ) {
|
|
remove_action( 'woocommerce_before_shop_loop_item_title', array( Bunyad::get('smart_mag')->woocommerce, 'cart_icon' ), 10 );
|
|
add_action( 'woocommerce_before_shop_loop_item_title', 'et_divi_builder_template_loop_product_thumbnail', 10);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Dequeue SmartMag's script which causes conflict in particular situation
|
|
*
|
|
* @since ??
|
|
*
|
|
* @return void
|
|
*/
|
|
function dequeue_scripts() {
|
|
// Fixed disappearing block preview layout because SmartMatg's frontend code expects
|
|
// `.navigation-wrap` to be exist and retrieving its offset value without further check
|
|
// which breaks js and keep preview rendering blank on layout block
|
|
if ( ET_GB_Block_Layout::is_layout_block_preview() ) {
|
|
wp_dequeue_script( 'bunyad-theme' );
|
|
}
|
|
}
|
|
}
|
|
ET_Builder_Theme_Compat_SmartMag::init(); |