| Server IP : 192.241.186.36 / Your IP : 216.73.216.164 Web Server : Apache/2.4.29 (Ubuntu) System : Linux webserver7 4.15.0-194-generic #205-Ubuntu SMP Fri Sep 16 19:49:27 UTC 2022 x86_64 User : root ( 0) PHP Version : 7.4.32 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/adsonicdigital/wp-content/themes/xstore/framework/compatibility/ |
Upload File : |
<?php
/**
* Description
*
* @package wcmp.php
* @since 8.0.0
* @author stas
* @link http://xstore.8theme.com
* @license Themeforest Split Licence
*/
defined( 'ABSPATH' ) || exit( 'Direct script access denied.' );
// **********************************************************************//
// ! WC Marketplace fix
// **********************************************************************//
if ( class_exists( 'WCMp_Ajax' ) ) {
add_action( 'wp_head', 'single_product_multiple_vendor_class' );
}
if ( ! function_exists( 'single_product_multiple_vendor_class' ) ) :
function single_product_multiple_vendor_class(){
?>
<script type="text/javascript">
var themeSingleProductMultivendor = '#content_tab_singleproductmultivendor';
</script>
<?php
}
endif;
add_action( 'wp_enqueue_scripts', function (){
$plugin_4x_version = class_exists('MVX');
if ( ($plugin_4x_version && function_exists('mvx_is_store_page') && mvx_is_store_page()) ||
(!$plugin_4x_version && function_exists('wcmp_is_store_page') && wcmp_is_store_page()) ) {
etheme_enqueue_style( 'star-rating' );
etheme_enqueue_style( 'comments' );
wp_enqueue_script( 'comment-reply' );
}
}, 35 );
add_filter('do_shortcode_tag', function ($content, $shortcode, $atts) {
if ( in_array($shortcode, array('wcmp_vendor', 'mvx_vendor'))) {
if ( !get_query_var( 'et_is-loggedin', false) ) {
etheme_enqueue_style( 'account-page' );
$content = str_replace(
array('wcmp-dashboard', 'mvx-dashboard'),
array('wcmp-dashboard woocommerce-account', 'mvx-dashboard woocommerce-account'),
$content );
}
}
return $content;
},10,3);
add_action('wp', function () {
add_action( 'woocommerce_before_shop_loop', function () {
$plugin_4x_version = class_exists('MVX');
if ( wc_get_loop_prop( 'is_shortcode' ) || ($plugin_4x_version && function_exists('mvx_is_store_page') && mvx_is_store_page() ||
(!$plugin_4x_version && function_exists('wcmp_is_store_page') && wcmp_is_store_page())
) ) {
etheme_enqueue_style('filter-area', true ); ?>
<div class="filter-wrap">
<div class="filter-content">
<?php }
}, 0 );
add_action( 'woocommerce_before_shop_loop', function () {
$plugin_4x_version = class_exists('MVX');
if ( wc_get_loop_prop( 'is_shortcode' ) || ($plugin_4x_version && function_exists('mvx_is_store_page') && mvx_is_store_page()) ||
(!$plugin_4x_version && function_exists('wcmp_is_store_page') && wcmp_is_store_page())
) { ?>
</div>
</div>
<?php }
}, 99999 );
}, 60);
add_filter('mvx_store_sidebar_args', function ($args) {
$args['before_widget'] = '<aside id="%1$s" class="widget sidebar-widget clr %2$s">';
$args['before_title'] = apply_filters('etheme_sidebar_before_title', '<h4 class="widget-title"><span>');
$args['after_title'] = apply_filters('etheme_sidebar_after_title', '</span></h4>');
return $args;
});