ID;
$eb_exception_title = get_the_title($price_id);
$price_exception_start = get_post_meta( $price_id, 'eagle_booking_mtb_exception_date_from', true );
$price_exception_end = get_post_meta( $price_id, 'eagle_booking_mtb_exception_date_to', true );
$price_exception_price = get_post_meta( $price_id, 'eagle_booking_mtb_exception_price', true );
echo '';
echo ''.$eb_exception_title.'';
echo ''.eagle_booking_displayd_date_format( $price_exception_start ).' → ';
echo eagle_booking_displayd_date_format( $price_exception_end ).'';
if( eb_currency_position() === 'before' ) {
echo ''.eb_currency().''.eb_formatted_price($price_exception_price, false).'';
} else {
echo ''.eb_formatted_price($price_exception_price, false).''.eb_currency().'';
}
echo '
';
}
// Get room extra guests option
$eb_room_price_type = get_post_meta( $eb_room_id, 'eagle_booking_mtb_room_price_type', true );
if( $eb_room_price_type == 'room_price_nights_guests' || $eb_room_price_type == 'room_price_nights_guests_custom' ) :
?>