![]() Server : Apache/2.4.52 (Ubuntu) System : Linux webserver 6.8.0-49-generic #49~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Nov 6 17:42:15 UTC 2 x86_64 User : www-data ( 33) PHP Version : 8.1.2-1ubuntu2.21 Disable Function : NONE Directory : /var/www/theprintave/wp-content/plugins/haru-pricom/templates/woo-cart/ |
<?php /** * @package HaruTheme/Haru Pricom * @version 1.0.0 * @author Administrator <admin@harutheme.com> * @copyright Copyright 2022, HaruTheme * @license http://opensource.org/licenses/gpl-2.0.php GPL v2 or later * @link http://harutheme.com */ ?> <?php if ( 'yes' == $settings['cart_side'] ) : ?> <div class="haru-cart-wrap cart-side <?php echo esc_attr( $settings['show_price'] == 'yes' ) ? 'with-price' : 'no-price'; ?>"> <div class="haru-cart-opener"> <a href="<?php echo esc_url( wc_get_cart_url() ); ?>" title="<?php echo esc_attr__( 'Shopping cart', 'haru-pricom' ); ?>"> <div class="haru-cart-icon"><?php haru_cart_count(); ?></div> <div class="haru-cart-sub-total"><?php haru_cart_subtotal(); ?></div> </a> </div> <div class="cart-mask-overlay"></div> <div class="cart-side-widget"> <div class="cart-side-header"><?php echo esc_html__( 'Shopping Cart', 'haru-pricom' ); ?> <div class="cart-side-close"> <span class="cart-side-icon"></span> <?php echo esc_html__( 'Close', 'haru-pricom' ); ?> </div> </div> <?php the_widget( 'WC_Widget_Cart', 'title=' ); ?> </div> </div> <?php else : ?> <div class="haru-cart-wrap <?php echo esc_attr( $settings['show_price'] == 'yes' ) ? 'with-price' : 'no-price'; ?>"> <div class="haru-cart-opener"> <a href="<?php echo esc_url( wc_get_cart_url() ); ?>" title="<?php echo esc_attr__( 'Shopping cart', 'haru-pricom' ); ?>"> <div class="haru-cart-icon"><?php haru_cart_count(); ?></div> <div class="haru-cart-sub-total"><?php haru_cart_subtotal(); ?></div> </a> </div> <div class="haru-cart-content"> <div class="widget_shopping_cart_content"> <?php get_template_part( 'woocommerce/cart/mini-cart' ); ?> </div> </div> <?php if ( $settings['pre_style'] == 'style-3' ) : ?> <div class="bottom-bar-title"><?php echo esc_html( $settings['cart_title'] ); ?></div> <a href="<?php echo esc_url( wc_get_cart_url() ); ?>" class="bottom-bar-link"></a> <?php endif; ?> </div> <?php endif; ?>