HEX
Server: Apache
System: Linux web15f74.uni5.net 5.4.282-1.el8.elrepo.x86_64 #1 SMP Mon Aug 19 18:33:22 EDT 2024 x86_64
User: lucendi (859622)
PHP: 7.4.33
Disabled: apache_child_terminate,c99_buff_prepare,c99_sess_put,dl,exec,leak,link,myshellexec,openlog,passthru,pclose,pcntl_exec,php_check_syntax,php_strip_whitespace,popen,posix_kill,posix_mkfifo,posix_setpgid,posix_setsid,posix_setuid,proc_close,proc_get_status,proc_nice,proc_open,proc_terminate,shell_exec,show_source,symlink,system,socket_listen,socket_create_listen,putenv
Upload Files
File: /home/lucendi/www/wp-content/themes/mesmerize/inc/woocommerce/woocommerce.php
<?php

require_once get_template_directory() . "/inc/woocommerce/index.php";

function mesmerize_is_woocommerce()
{
    return function_exists('is_woocommerce') && (is_woocommerce() || is_cart() || is_checkout() || is_account_page());
}

function mesmerize_is_woocommerce_product_page()
{
    return function_exists('is_woocommerce') && is_product();
}

add_filter("inner_header_show_subtitle", function ($value) {
    $is_woocommerce = mesmerize_is_woocommerce();
    
    return $value && ! $is_woocommerce;
});
add_action('after_setup_theme', 'mesmerize_add_woocommerce_support');
function mesmerize_add_woocommerce_support()
{
    add_theme_support('woocommerce');
    
    
    /* WooCommerce support for latest gallery */
    if (class_exists('WooCommerce')) {
        add_theme_support('wc-product-gallery-zoom');
        add_theme_support('wc-product-gallery-lightbox');
        add_theme_support('wc-product-gallery-slider');
    }
}

function mesmerize_woocommerce_register_sidebars()
{
    
    register_sidebar(array(
        'name'          => 'WooCommerce Left Sidebar',
        'id'            => "ope_pro_woocommerce_sidebar_left",
        'title'         => "'WooCommerce Left Sidebar",
        'before_widget' => '<div id="%1$s" class="widget %2$s">',
        'after_widget'  => '</div>',
        'before_title'  => '<h5 class="widgettitle">',
        'after_title'   => '</h5>',
    ));
    
    register_sidebar(array(
        'name'          => 'WooCommerce Right Sidebar',
        'id'            => "ope_pro_woocommerce_sidebar_right",
        'title'         => "'WooCommerce Right Sidebar",
        'before_widget' => '<div id="%1$s" class="widget %2$s">',
        'after_widget'  => '</div>',
        'before_title'  => '<h5 class="widgettitle">',
        'after_title'   => '</h5>',
    ));
    
}

add_action('widgets_init', 'mesmerize_woocommerce_register_sidebars');


add_filter('woocommerce_enqueue_styles', 'mesmerize_woocommerce_enqueue_styles');

function mesmerize_woocommerce_enqueue_styles($woo)
{
    $version = mesmerize_get_version();
    
    
    $styles = array(
        'mesmerize-woo' => array(
            'src'     => get_template_directory_uri() . "/woocommerce.css",
            'deps'    => array('woocommerce-general'),
            'version' => $version,
            'media'   => 'all',
            'has_rtl' => false,
        ),
    );
    
    // wp_enqueue_style('fancybox', mesmerize_pro_uri( "/assets/css/jquery.fancybox.min.css") , array(), $version);
    // wp_enqueue_script('fancybox', mesmerize_pro_uri( "/assets/js/jquery.fancybox.min.js"), array("jquery"), $version);
    
    return array_merge($woo, $styles);
}


function mesmerize_woocommerce_get_sidebar($slug)
{
    $is_enabled = get_theme_mod("mesmerize_woocommerce_is_sidebar_{$slug}_enabled", true);
    
    if ($is_enabled) {
        get_sidebar("woocommerce-{$slug}");
    }
}

function mesmerize_woocommerce_container_class($echo = true)
{
    $class = array();
    
    $is_left_sb_enabled  = is_active_sidebar('ope_pro_woocommerce_sidebar_left');
    $is_right_sb_enabled = is_active_sidebar("ope_pro_woocommerce_sidebar_right");
    $sidebars            = intval($is_left_sb_enabled) + intval($is_right_sb_enabled);
    
    if (is_archive()) {
        $class = array("enabled-sidebars-{$sidebars}");
    }
    
    $class = apply_filters('mesmerize_woocommerce_container_class', $class);
    
    if ($echo) {
        echo implode(" ", $class);;
    }
    
    return implode(" ", $class);
}


function mesmerize_woocommerce_container_class_hide_title($classes)
{
    if (mesmerize_is_woocommerce_product_page()) {
        $template = get_theme_mod("mesmerize_woocommerce_product_header_type", "default");
        if ($template == "default") {
            array_push($classes, "no-title");
        }
    }
    
    return $classes;
}

add_filter('mesmerize_woocommerce_container_class', 'mesmerize_woocommerce_container_class_hide_title');


add_action('wp_enqueue_scripts', function () {
    $ver = mesmerize_get_version();
    wp_enqueue_script('mesmerize-woocommerce', get_template_directory_uri() . "/assets/js/woo.js", array('jquery'), $ver);
});


add_filter('mesmerize_header_title', function ($title) {
    
    if (mesmerize_is_page_template()) {
        if (is_archive() && mesmerize_get_current_template() === "woocommerce.php") {
            $title = woocommerce_page_title(false);
        }
    }
    
    return $title;
});

function mesmerize_navigation_sticky_attrs_always($atts)
{
    if (mesmerize_is_woocommerce()) {
        $atts["data-sticky-always"] = 1;
    }
    
    return $atts;
}

add_action('mesmerize_before_header', function ($template) {
    if ($template == "small") {
        add_filter("mesmerize_navigation_sticky_attrs", "mesmerize_navigation_sticky_attrs_always");
    }
});

add_filter('mesmerize_header', 'mesmerize_get_header_woocommerce', 10, 2);

function mesmerize_get_header_woocommerce($template)
{
    
    global $post;
    $header = false;
    
    if ($post) {
        $header = get_post_meta($post->ID, 'mesmerize_post_header', true);
    }
    
    if ( ! $header) {
        $header = $template;
    }
    
    if (mesmerize_is_woocommerce()) {
        $setting = "woocommerce_header_type";
        if (mesmerize_is_woocommerce_product_page()) {
            $setting = "woocommerce_product_header_type";
        }
        
        $template = get_theme_mod($setting, "default");
        if ($template == "default") {
            $template = "";
        }
    }
    
    return $template;
}


add_filter('woocommerce_show_page_title', '__return_false');


add_filter('woocommerce_cross_sells_total', 'mesmerize_cross_sells_product_no');

function mesmerize_cross_sells_product_no($columns)
{
    $result = get_theme_mod('woocommerce_cross_sells_product_no', 4);
    
    return absint($result);
}


add_action('woocommerce_before_shop_loop', 'mesmerize_woocommerce_cart_button', 5);

function mesmerize_woocommerce_cart_button()
{
    
    $fragments = opr_woo_cart_button(array());
    ?>
    <div class="cart-contents-content">
        <h4><?php echo __('Cart Content: ', 'mesmerize'); ?></h4>
        <?php echo $fragments['a.cart-contents']; ?>
        <?php woocommerce_breadcrumb(); ?>
    </div>
    <?php
}

add_filter('woocommerce_add_to_cart_fragments', 'opr_woo_cart_button');

function opr_woo_cart_button($fragments)
{
    global $woocommerce;
    ob_start();
    ?>

    <a class="cart-contents button" href="<?php echo esc_url(wc_get_cart_url()); ?>" title="<?php esc_attr_e('View your shopping cart', 'mesmerize'); ?>">
        <i class="fa fa-shopping-cart"></i>
        <?php
        echo
            /* translators: %d is number of items */
        sprintf(_n('%d item', '%d items', absint($woocommerce->cart->cart_contents_count), 'mesmerize'), absint($woocommerce->cart->cart_contents_count)); ?> - <?php echo wp_kses($woocommerce->cart->get_cart_total(), array(
            'span' => array(
                'class' => array(),
            ),
        )); ?></a>
    <?php
    $fragments['a.cart-contents'] = ob_get_clean();
    
    return $fragments;
}

add_action('woocommerce_before_single_product_summary', 'woocommerce_breadcrumb', 5, 0);

add_filter('mesmerize_override_with_thumbnail_image', function ($value) {
    
    global $product;
    
    if (isset($product)) {
        $value = get_theme_mod('woocommerce_product_header_image', true);
        
        $value = (intval($value) === 1);
        
    }
    
    return $value;
});


add_filter('mesmerize_overriden_thumbnail_image', function ($url) {
    global $post;
    
    
    if (function_exists('is_shop') && is_shop()) {
        $page_id = wc_get_page_id('shop');
        $url     = get_the_post_thumbnail_url($page_id);
    }
    
    return $url;
});

add_filter('woocommerce_rest_check_permissions', function ($permission, $context, $n, $object) {
    
    $nonce        = isset($_REQUEST['mesmerize_woocommerce_api_nonce']) ? $_REQUEST['mesmerize_woocommerce_api_nonce'] : '';
    $isNonceValid = is_mesmerize_woocommerce_api_key_valid($nonce);
    if ($isNonceValid && $context === "read") {
        {
            return true;
        }
    }
    
    return $permission;
    
}, 10, 4);


function mesmerize_woocommerce_query_maybe_add_category_args($args, $category, $operator = "IN")
{
    if ( ! empty($category)) {
        if (empty($args['tax_query'])) {
            $args['tax_query'] = array();
        }
        $args['tax_query'][] = array(
            array(
                'taxonomy' => 'product_cat',
                'terms'    => array_map('sanitize_title', explode(',', $category)),
                'field'    => 'id',
                'operator' => $operator,
            ),
        );
    }
    
    return $args;
}

function mesmerize_woocommerce_query_maybe_add_tags_args($args, $tag, $operator = "IN")
{
    if ( ! empty($tag)) {
        if (empty($args['tax_query'])) {
            $args['tax_query'] = array();
        }
        $args['tax_query'][] = array(
            array(
                'taxonomy' => 'product_tag',
                'terms'    => array_map('sanitize_title', explode(',', $tag)),
                'field'    => 'id',
                'operator' => $operator,
            ),
        );
    }
    
    return $args;
}


add_filter('body_class', 'mesmerize_wc_body_class', 20);

function mesmerize_wc_body_class($classes)
{
    global $post;
    
    if (in_array('woocommerce', $classes)) {
        $classes[] = 'page';
    }
    
    
    return $classes;
}


add_filter('wc_add_to_cart_message_html', function ($message) {
    if ('yes' !== get_option('woocommerce_cart_redirect_after_add')) {
        $message = str_replace("</a>", "</a><p>", $message);
    }
    
    $message .= "</p>";
    
    return $message;
});


function mesmerize_woocommerce_get_size($cols)
{
    return (intval($cols) / 12 * 100);
}

function mesmerize_woocommerce_cols_css($sel, $cols)
{
    $size = (100 / intval($cols));
    
    return "" .
           "$sel {" .
           "-webkit-flex-basis: $size%;" .
           "-moz-flex-basis: $size%;" .
           "-ms-flex-preferred-size: $size%;" .
           "flex-basis: $size%;" .
           "max-width: $size%;" .
           "}";
}


add_action('wp_enqueue_scripts', 'mesmerize_woocommerce_print_layout');
function mesmerize_woocommerce_print_layout()
{
    
    $style = "";
    if (mesmerize_can_show_cached_value('mesmerize-woo-inline-css')) {
        $style = mesmerize_get_cached_value('mesmerize-woo-inline-css');
        $style = "/* cached */\n{$style}";
    } else {
        
        $list = array(
            "list"       => array(
                "sel"     => ".woocommerce ul.products li.product:not(.in-page-section)",
                "desktop" => get_theme_mod('woocommerce_list_item_desktop_cols', 4),
                "tablet"  => get_theme_mod('woocommerce_list_item_tablet_cols', 2),
            ),
            "related"    => array(
                "sel"     => ".woocommerce.single-product .related .products li.product",
                "desktop" => get_theme_mod('woocommerce_related_list_item_desktop_cols', 4),
                "tablet"  => get_theme_mod('woocommerce_related_list_item_tablet_cols', 2),
            ),
            "upsell"     => array(
                "sel"     => ".woocommerce.single-product .upsells .products li.product",
                "desktop" => get_theme_mod('woocommerce_upsells_list_item_desktop_cols', 4),
                "tablet"  => get_theme_mod('woocommerce_upsells_list_item_tablet_cols', 2),
            ),
            "cross_sell" => array(
                "sel"     => ".woocommerce .cart-collaterals .cross-sells .products li.product",
                "desktop" => get_theme_mod('woocommerce_cross_sell_list_item_desktop_cols', 2),
                "tablet"  => get_theme_mod('woocommerce_cross_sell_list_item_tablet_cols', 2),
            ),
        );
        
        $style = "@media (min-width: 768px) {";
        foreach ($list as $key => $data) {
            $style .= "\n /** {$data['sel']} - {$data['tablet']} */\n";
            $style .= mesmerize_woocommerce_cols_css($data['sel'], $data['tablet']);
        }
        $style .= "}";
        
        $style .= "\n@media (min-width: 1024px) {";
        foreach ($list as $key => $data) {
            $style .= "\n /** {$data['sel']} - {$data['desktop']} */\n";
            $style .= mesmerize_woocommerce_cols_css($data['sel'], $data['desktop']);
        }
        $style .= "}";
        
        mesmerize_cache_value('mesmerize-woo-inline-css', $style);
    }
    
    wp_add_inline_style('mesmerize-woo', $style);
}


function mesmerize_compare_woocommerce_version($version, $operator)
{
    if (class_exists('WooCommerce')) {
        global $woocommerce;
        
        return version_compare($woocommerce->version, $version, $operator);
    }
    
    return false;
}

if ( ! defined('MESMERIZE_MIN_WOOCOMMERCE_VERSION')) {
    define('MESMERIZE_MIN_WOOCOMMERCE_VERSION', apply_filters('memerize_min_woocommerce_version', '3.2.0'));
}

add_action('admin_notices', 'mesmerize_woocommerce_version_notice');

function mesmerize_woocommerce_version_notice()
{
    if (mesmerize_compare_woocommerce_version(MESMERIZE_MIN_WOOCOMMERCE_VERSION, '>')) {
        return;
    }
    
    ?>
    <div class="notice notice-alt notice-error notice-large">
        <h4><?php _e('WooCommerce version outdated!', 'mesmerize'); ?></h4>
        <p>
            <?php _e('You need to update your <strong>WooCommerce plugin</strong> to use it with the <strong>Mesmerize theme</strong>.', 'mesmerize'); ?> <br/>
            <?php _e('<strong>Mesmerize theme</strong> requires the WooCommerce plugin version to be at least: ', 'mesmerize') ?> <strong><?php echo MESMERIZE_MIN_WOOCOMMERCE_VERSION; ?></strong>
        </p>
    </div>
    <?php
}