File: /home/muoapartman/www/wp-content/themes/resoto/wp-hotel-booking/loop/mini-cart-loop.php
<?php
/**
* The template for displaying mini cart loop.
*
* This template can be overridden by copying it to yourtheme/wp-hotel-booking/loop/mini-cart-loop.php.
*
* @author ThimPress, leehld
* @package WP-Hotel-Booking/Templates
* @version 1.9.7.4
*/
/**
* Prevent loading this file directly
*/
defined( 'ABSPATH' ) || exit();
$cart = WP_Hotel_Booking::instance()->cart;
/**
* @var $cart WPHB_Cart
*/
?>
<div class="hb_mini_cart_item" data-cart-id="<?php echo esc_attr( $cart_id ); ?>">
<?php $cart_item = $cart->get_cart_item( $cart_id ) ?>
<?php do_action( 'hotel_booking_before_mini_cart_loop', $room ); ?>
<div class="hb_mini_cart_top">
<h4 class="hb_title">
<a href="<?php echo get_permalink( $room->ID ); ?>"><?php printf( '%s %s', apply_filters( 'hb_mini_cart_room_name', $room->name, $room->ID ), $room->capacity_title ? '(' . $room->capacity_title . ')' : '' ) ?></a>
</h4>
<span class="hb_mini_cart_remove"><i class="lni-close"></i></span>
</div>
<div class="hb_mini_cart_number">
<label><?php _e( 'Quantity: ', 'resoto' ); ?></label>
<span><?php printf( '%s', $cart_item->quantity ); ?></span>
</div>
<?php do_action( 'hotel_booking_before_mini_cart_loop_price', $room, $cart_id ); ?>
<div class="hb_mini_cart_price">
<label><?php _e( 'Price: ', 'resoto' ); ?></label>
<span><?php printf( '%s', hb_format_price( $cart_item->amount ) ) ?></span>
</div>
<?php do_action( 'hotel_booking_after_mini_cart_loop', $room, $cart_id ); ?>
</div>