HEX
Server: Apache
System: Linux server-674799.igrow.ws 5.14.0-611.27.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 4 04:40:11 EST 2026 x86_64
User: elrashedytravel (1025)
PHP: 8.1.34
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/elrashedytravel/public_html/wp-content/themes/entr/lib/woocommerce.php
<?php
if (!function_exists('entr_cart_link')) {

    function entr_cart_link() {
        ?>	
        <a class="cart-contents" href="#" data-tooltip="<?php esc_attr_e('Cart', 'entr'); ?>" title="<?php esc_attr_e('Cart', 'entr'); ?>">
            <i class="la la-shopping-bag"><span class="count"><?php echo wp_kses_data(WC()->cart->get_cart_contents_count()); ?></span></i>
            <div class="amount-cart hidden-xs"><?php echo wp_kses_data(WC()->cart->get_cart_subtotal()); ?></div> 
        </a>
        <?php
    }

}

if (!function_exists('entr_header_cart')) {

	add_action('entr_header', 'entr_header_cart', 30);
	
    function entr_header_cart() {
        if (get_theme_mod('woo_header_cart', 1) == 1) {
            ?>
            <div class="header-cart">
                <div class="header-cart-block">
                    <div class="header-cart-inner">
                        <?php entr_cart_link(); ?>
                    </div>
                </div>
            </div>
            <?php
        }
    }

}
if (!function_exists('entr_cart_content')) {

    add_action('wp_footer', 'entr_cart_content', 30);

    function entr_cart_content() {
        if (get_theme_mod('woo_header_cart', 1) == 1) {
            ?>
            <ul class="site-header-cart list-unstyled">
                <i class="la la-times-circle"></i>
                <li>
                    <?php the_widget('WC_Widget_Cart', 'title='); ?>
                </li>
            </ul>
            <?php
        }
    }

}
if (!function_exists('entr_header_add_to_cart_fragment')) {
    add_filter('woocommerce_add_to_cart_fragments', 'entr_header_add_to_cart_fragment');

    function entr_header_add_to_cart_fragment($fragments) {
        ob_start();

        entr_cart_link();

        $fragments['a.cart-contents'] = ob_get_clean();

        return $fragments;
    }

}

if (!function_exists('entr_my_account')) {

	add_action('entr_header', 'entr_my_account', 40);

    function entr_my_account() {
        $login_link = get_permalink(get_option('woocommerce_myaccount_page_id'));
        ?>
        <div class="header-my-account">
            <div class="header-login"> 
                <a href="<?php echo esc_url($login_link); ?>" data-tooltip="<?php esc_attr_e('My Account', 'entr'); ?>" title="<?php esc_attr_e('My Account', 'entr'); ?>">
                    <i class="la la-user"></i>
                </a>
            </div>
        </div>
        <?php
    }

}

if (!function_exists('entr_head_wishlist')) {

    add_action('entr_header', 'entr_head_wishlist', 50);

    function entr_head_wishlist() {
        if (function_exists('YITH_WCWL')) {
            $wishlist_url = YITH_WCWL()->get_wishlist_url();
            ?>
            <div class="header-wishlist">
                <a href="<?php echo esc_url($wishlist_url); ?>" data-tooltip="<?php esc_attr_e('Wishlist', 'entr'); ?>" title="<?php esc_attr_e('Wishlist', 'entr'); ?>">
                    <i class="lar la-heart"></i>
                </a>
            </div>
            <?php
        }
    }

}

if (!function_exists('entr_head_compare')) {

	add_action('entr_header', 'entr_head_compare', 60);
	
    function entr_head_compare() {
        if (class_exists( 'YITH_WooCompare_Frontend' )) {
            global $yith_woocompare;
			wp_enqueue_script( 'yith-woocompare-main' );
			$url =  method_exists('YITH_WooCompare_Frontend', 'get_table_url') ? YITH_WooCompare_Frontend::instance()->get_table_url() :  $yith_woocompare->obj->view_table_url();
            ?>
            <div class="header-compare product">
                <a class="compare added" rel="nofollow" href="<?php echo esc_url($url); ?>" data-tooltip="<?php esc_attr_e('Compare', 'entr'); ?>" title="<?php esc_attr_e('Compare', 'entr'); ?>">
                    <i class="la la-sync"></i>
                </a>
            </div>
            <?php
        }
    }

}

remove_action('woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10);
remove_action('woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10);
remove_action('woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0);

add_action('woocommerce_before_main_content', 'entr_wrapper_start', 10);
add_action('woocommerce_after_main_content', 'entr_wrapper_end', 10);

function entr_wrapper_start() {
    ?>
    <div class="row">
        <article class="envo-content woo-content col-md-<?php entr_main_content_width_columns(); ?>">
            <?php
}

function entr_wrapper_end() {
            ?>
        </article>       
        <?php get_sidebar('right'); ?>
    </div>
    <?php
}

// Load cart widget in header. Required since Woo 7.8
function entr_wc_cart_fragments() { wp_enqueue_script( 'wc-cart-fragments' ); }
add_action( 'wp_enqueue_scripts', 'entr_wc_cart_fragments' );