i have some problem after remove location code.
before remove location code block photos grid has appeared
https://prnt.sc/oou4mi
after remove location code missing block photos grid
https://prnt.sc/oou49m
url : https://matalembu.co.id/tour/paket-private-trip-bromo-1-day/
pls help the problem what i have do
thanks regrads
Hi,
Please remove following code in /wp-content/themes/panagea/single-hotel.php file.
<?php if ( ! empty( $hotel_pos ) ) : ?>
<h3><?php echo esc_html__( 'Location', 'panagea' ); ?></h3>
<div id="map" class="map map_single add_bottom_30"></div>
<!-- End Map -->
<?php endif; ?>
And
<div class="box_detail booking">
<div class="price">
<div class="price-fields">
<span><?php echo panagea_price( $person_price ) ?> <small><?php echo esc_html__( 'person', 'panagea' ) ?></small></span>
</div>
<?php if ( ! empty( panagea_get_opt( 'hotel_review' ) ) ) : ?>
<div class="score">
<span><?php echo esc_html( panagea_get_review_based_text( $review ) ); ?><em><?php echo esc_html( $review_count ); ?> <?php echo esc_html__( 'Reviews', 'panagea' ); ?></em></span><strong><?php echo esc_html( $review ); ?></strong>
</div>
<?php endif; ?>
</div>
<?php if ( 'external' == $hotel_setting ) : ?>
<div class="short-description add_bottom_15">
<?php
if ( ! empty( $affiliate_desc ) ) {
echo balancetags( $affiliate_desc );
}
?>
</div>
<a href="<?php echo esc_url( $external_link ); ?>" class="btn_1 full-width purchase"><?php echo esc_html__( 'Check now', 'panagea' ) ?></a>
<?php elseif ( 'inquiry' == $hotel_setting ) : ?>
<div class="inquiry-form-wrapper">
<?php echo do_shortcode( $inquiry_form ); ?>
</div>
<?php elseif ( 'default' == $hotel_setting ) : ?>
<?php if ( panagea_get_woocommerce_cart_url() ) : ?>
<div class="booking-form-wrapper">
<form method="get" id="booking-form" action="<?php echo esc_url( panagea_get_woocommerce_cart_url() ); ?>">
<input type="hidden" name="hotel_id" value="<?php echo esc_attr( $post_id ) ?>">
<input type="hidden" name="action" value="panagea_hotel_check_price">
<?php wp_nonce_field( 'hotel_add_cart', 'hotel_add_cart_wpnonce' ); ?>
<?php
$lang_code = panagea_get_lang_code_for_page( panagea_get_opt( 'hotel_cart_page' ) );
if ( ! empty( $lang_code ) ) {
?>
<input type="hidden" name="lang" value="<?php echo esc_attr( $lang_code ); ?>">
<?php
}
?>
<div class="form-group">
<input class="form-control date" type="text" name="dates" placeholder="<?php esc_attr_e( 'When..', 'panagea' ); ?>">
<input type="hidden" name="date_from">
<input type="hidden" name="date_to">
<i class="icon_calendar"></i>
</div>
<div class="panel-dropdown">
<a href="#"><?php echo esc_html__( 'Guests', 'panagea' ); ?> <span class="qtyTotal">1</span></a>
<div class="panel-dropdown-content right">
<div class="qtyButtons">
<label><?php echo esc_html__( 'Adults', 'panagea' ); ?></label>
<input type="text" name="adults" value="1" class="qtyInput">
</div>
<div class="qtyButtons">
<label><?php echo esc_html__( 'Kids', 'panagea' ); ?></label>
<input type="text" name="kids" value="0" class="qtyInput">
</div>
</div>
</div>
<div class="form-group clearfix">
<div class="custom-select-form">
<select class="wide" name="room_type_id">
<?php
foreach( $room_types as $post ) {
echo '<option value="' . esc_attr( $post->ID ) . '">' . esc_html( $post->post_title ) . '</option>';
}
?>
</select>
</div>
</div>
<div class="hotel total-price"></div>
<input type="submit" class="add_top_15 btn_1 full-width purchase book-now-btn" value="<?php echo esc_attr__( 'Add Cart', 'panagea' ); ?>">
<input type="submit" class="add_top_15 btn_1 full-width purchase check-price-btn" value="<?php echo esc_attr__( 'Check Price', 'panagea' ); ?>">
</form>
</div>
<?php else : ?>
<?php echo wp_kses_post( sprintf( __( 'Please enable WooCommerce Integration on <a href="%s">Theme Options</a>/Woocommerce Integration', 'panagea' ), esc_url( admin_url( 'admin.php?page=theme_options' ) ) ) ); ?>
<?php endif; ?>
<?php else : ?>
<div class="short-description add_bottom_15">
<?php
if ( ! empty( $empty_booking_desc ) ) {
echo balancetags( $empty_booking_desc );
}
?>
</div>
<?php endif; ?>
<?php
if ( ! empty( panagea_wishlist_page_url() ) ) :
if ( is_user_logged_in() ) {
$user_id = get_current_user_id();
$wishlist = get_user_meta( $user_id, 'wishlist', true );
if ( empty( $wishlist ) )
$wishlist = array();
?>
<a class="btn_1 full-width outline wishlist btn-add-wishlist" href="#" data-label-add="<?php esc_html_e( 'Add to wishlist', 'panagea' ); ?>" data-label-remove="<?php esc_html_e( 'Remove from wishlist', 'panagea' ); ?>" data-post-id="<?php echo esc_attr( $post_id ) ?>"<?php echo ( in_array( panagea_hotel_org_id( $post_id ), $wishlist ) ) ? ' style="display:none;"' : '' ?>><i class="icon_heart"></i> <?php echo esc_html__( 'Add to wishlist', 'panagea' ) ?></a>
<a class="btn_1 full-width outline wishlist btn-remove-wishlist" href="#" data-label-add="<?php esc_html_e( 'Add to wishlist', 'panagea' ); ?>" data-label-remove="<?php esc_html_e( 'Remove from wishlist', 'panagea' ); ?>" data-post-id="<?php echo esc_attr( $post_id ) ?>"<?php echo ( ! in_array( panagea_hotel_org_id( $post_id ), $wishlist ) ) ? ' style="display:none;"' : '' ?>><i class="icon_heart"></i> <?php esc_html_e( 'Remove from wishlist', 'panagea' ); ?></a>
<?php
} else {
?>
<div class="add_top_30">
<div class="text-center"><?php esc_html_e( 'To save your wishlist please login.', 'panagea' ); ?></div>
<?php if ( empty( panagea_get_opt( 'login_page' ) ) ) { ?>
<a href="#" class="btn_1 rounded full-width"><?php esc_html_e( 'login', 'panagea' ); ?></a>
<?php } else { ?>
<a href="<?php echo esc_url( panagea_get_permalink_clang( panagea_get_opt( 'login_page' ) ) ); ?>" class="btn_1 rounded full-width"><?php esc_html_e( 'login', 'panagea' ); ?></a>
<?php } ?>
</div>
<?php
}
endif;
if ( ! empty( $hotel_security_deposit ) && 'default' == $hotel_setting ) {
?>
<div class="text-center"><small><?php echo esc_html__( 'Deposit amount is ', 'panagea' ) . $hotel_security_deposit . '%'; ?></small></div>
<?php
}
?>
</div>
Regards, C-Themes
can you help me remove location google api and widget booking?? https://prnt.sc/ol489b
Hi,
Please remove following codes in /wp-content/themes/panagea/single-hotel.php file, too.
Regards,