🏨 Hotel Booking Enhancements: - Implemented Eagle Booking Advanced Pricing add-on - Added Booking.com-style rate management system - Created professional calendar interface for pricing - Integrated deals and discounts functionality 💰 Advanced Pricing Features: - Dynamic pricing models (per room, per person, per adult) - Base rates, adult rates, and child rates management - Length of stay discounts and early bird deals - Mobile rates and secret deals implementation - Seasonal promotions and flash sales 📅 Availability Management: - Real-time availability tracking - Stop sell and restriction controls - Closed to arrival/departure functionality - Minimum/maximum stay requirements - Automatic sold-out management 💳 Payment Integration: - Maintained Redsys payment gateway integration - Seamless integration with existing Eagle Booking - No modifications to core Eagle Booking plugin 🛠️ Technical Implementation: - Custom database tables for advanced pricing - WordPress hooks and filters integration - AJAX-powered admin interface - Data migration from existing Eagle Booking - Professional calendar view for revenue management 📊 Admin Interface: - Booking.com-style management dashboard - Visual rate and availability calendar - Bulk operations for date ranges - Statistics and analytics dashboard - Modal dialogs for quick editing 🔧 Code Quality: - WordPress coding standards compliance - Secure database operations with prepared statements - Proper input validation and sanitization - Error handling and logging - Responsive admin interface 🤖 Generated with Claude Code (https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
85 lines
2.1 KiB
PHP
85 lines
2.1 KiB
PHP
<?php
|
|
/**
|
|
* The Template for displaying single place
|
|
*
|
|
* This template can be overridden by copying it to yourtheme/eb-templates/single-place/single-place.php.
|
|
*
|
|
* Author: Eagle Themes
|
|
* Package: Eagle-Booking/Templates
|
|
* Version: 1.1.5
|
|
*/
|
|
|
|
defined('ABSPATH') || exit;
|
|
|
|
get_header();
|
|
|
|
if (have_posts()) : the_post();
|
|
|
|
?>
|
|
|
|
<main class="single-place">
|
|
|
|
<!-- Place -->
|
|
<article class="blog_post place-details">
|
|
|
|
<!-- Image -->
|
|
<div class="place-image">
|
|
<?php if (has_post_thumbnail()) : ?>
|
|
<figure>
|
|
<img src="<?php echo the_post_thumbnail_url('eagle_booking_image_size_1920_800') ?>" class="img-responsive" alt="<?php echo the_title_attribute() ?>">
|
|
</figure>
|
|
|
|
<!-- Title -->
|
|
<div class="place-title">
|
|
<div class="container">
|
|
<h1 class="title"><?php echo get_the_title() ?></h1>
|
|
</div>
|
|
</div>
|
|
<?php endif ?>
|
|
</div>
|
|
|
|
<div class="container">
|
|
<?php
|
|
$eagle_booking_sidebar = get_post_meta( get_the_ID(), 'eagle_booking_mtb_place_sidebar', true);
|
|
if ( $eagle_booking_sidebar === 'none' || $eagle_booking_sidebar === '' ) {
|
|
$col_class = 'col-md-12';
|
|
} else {
|
|
$col_class = 'col-md-9';
|
|
}
|
|
?>
|
|
|
|
<!-- Left Sidebar -->
|
|
<?php if ( $eagle_booking_sidebar === 'left' ) : ?>
|
|
<?php get_sidebar(); ?>
|
|
<?php endif ?>
|
|
|
|
<!-- Details -->
|
|
<div class="<?php echo esc_attr($col_class) ?> details">
|
|
|
|
<!-- Content -->
|
|
<div class="content entry">
|
|
<?php the_content() ?>
|
|
</div>
|
|
<!-- Meta -->
|
|
<div class="meta_post">
|
|
|
|
<!-- SHARE BUTTONS -->
|
|
<div class="share">
|
|
<?php eb_social_share() ?>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<!-- RIGHT SIDEBAR -->
|
|
<?php if ( $eagle_booking_sidebar === 'right' ) : ?>
|
|
<?php get_sidebar(); ?>
|
|
<?php endif ?>
|
|
|
|
</div>
|
|
</article>
|
|
</main>
|
|
|
|
<?php endif ?>
|
|
<?php get_footer() ?>
|