MOON
Server: Apache
System: Linux server.netcommlabs.in 3.10.0-1160.83.1.el7.x86_64 #1 SMP Wed Jan 25 16:41:43 UTC 2023 x86_64
User: dermova (1051)
PHP: 5.4.45
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/dermova/public_html/india/wp-content/themes/ri-colias/woocommerce/cart/mini-cart.php
<?php
/**
 * Mini-cart
 *
 * Contains the markup for the mini-cart, used by the cart widget
 *
 * @author 		WooThemes
 * @package 	WooCommerce/Templates
 * @version     2.1.0
 */

if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly

global $woocommerce;
?>

<?php do_action( 'woocommerce_before_mini_cart' ); ?>

<div class="cart_container uk-offcanvas-bar uk-offcanvas-bar-flip" data-text-emptycart="<?php esc_html_e( 'No products in the cart.', 'woocommerce' ); ?>">
    <div class="cart-panel">
        <ul class="cart_list product_list_widget">
            <?php if ( sizeof( WC()->cart->get_cart() ) > 0 ) : ?>
                <?php
                foreach ( WC()->cart->get_cart() as $cart_item_key => $cart_item ) {
                    $_product     = apply_filters( 'woocommerce_cart_item_product', $cart_item['data'], $cart_item, $cart_item_key );
                    $product_id   = apply_filters( 'woocommerce_cart_item_product_id', $cart_item['product_id'], $cart_item, $cart_item_key );
                    $thumbnail     = apply_filters( 'woocommerce_cart_item_thumbnail', $_product->get_image(), $cart_item, $cart_item_key );

                    if ( $_product && $_product->exists() && $cart_item['quantity'] > 0 && apply_filters( 'woocommerce_widget_cart_item_visible', true, $cart_item, $cart_item_key ) ) {
                        ?>
                        <li class="media">
                            <a href="<?php echo get_permalink( $product_id ); ?>" class="cart-image pull-left">
                                <?php echo $thumbnail; ?>
                            </a>
                            <div class="cart-main-content media-body">
                                <div class="name">
                                    <a href="<?php echo get_permalink( $product_id ); ?>">
                                        <?php echo apply_filters( 'woocommerce_cart_item_name', $_product->get_title(), $cart_item, $cart_item_key );; ?>
                                    </a>
                                </div>
                                <p class="cart-item">
                                    <?php echo WC()->cart->get_item_data( $cart_item ); ?>
                                    <?php echo apply_filters( 'woocommerce_widget_cart_item_quantity', '<span class="quantity">' . sprintf( '%s &times; %s', $cart_item['quantity'], apply_filters( 'woocommerce_cart_item_price', WC()->cart->get_product_price( $_product ), $cart_item, $cart_item_key ) ) . '</span>', $cart_item, $cart_item_key ); ?>
                                </p>
                            </div>
                            <a href="#" data-product-id="<?php echo esc_attr($product_id); ?>" data-product-key="<?php echo esc_attr($cart_item_key); ?>" class="rit_product_remove">
                                <i class="fa fa-close"></i>
                            </a>
                        </li>
                    <?php
                    }
                }
                ?>

            <?php else : ?>

                <li class="empty"><?php esc_html_e( 'No products in the cart.', 'woocommerce' ); ?></li>

            <?php endif; ?>

        </ul><!-- end product list -->

        <?php if ( sizeof( WC()->cart->get_cart() ) > 0 ) : ?>

            <p class="total"><strong><?php esc_html_e( 'Subtotal', 'woocommerce' ); ?>:</strong> <?php echo WC()->cart->get_cart_subtotal(); ?></p>

            <?php do_action( 'woocommerce_widget_shopping_cart_before_buttons' ); ?>

            <p class="buttons clearfix">
                <a href="<?php echo WC()->cart->get_cart_url(); ?>" class="btn btn-default btn-viewcart pull-left"><?php esc_html_e( 'View Cart', 'woocommerce' ); ?></a>
                <a href="<?php echo WC()->cart->get_checkout_url(); ?>" class="btn btn-primary btn-checkout pull-right"><?php esc_html_e( 'Checkout', 'woocommerce' ); ?></a>
            </p>

        <?php endif; ?>
    </div>
</div>