Andre Flores

Forum Replies Created

Viewing 15 posts - 421 through 435 (of 1,926 total)
  • Author
    Posts
  • in reply to: Search results show booked accommodations #1162950
    Andre Flores
    Moderator

    Hello Michael,

    As I can see your issue is being taken care of in ticket #40580. Let me know if you need further assistance with this matter.

    Regards,
    Andre

    in reply to: Bookings for next season. No accommodations found #1162942
    Andre Flores
    Moderator

    Hello Mario,

    Try placing newly created seasons within current active rates and not create separate rates for 2022 seasons. If this does not help, submit a request to our Help Desk providing temporary access to WordPress dashboard, so we take a closer look at the issue.

    Regards,
    Andre

    in reply to: How to use with Elementor? #1162941
    Andre Flores
    Moderator

    Hello Scott,

    You may try hiding default Comments section by adding the following code under Appearance ->Customize ->Additional CSS:

    #comments {
    	display: none;
    }

    If this does not help, get back to me with the URL to an example page, so I take a closer look at it.

    Regards,
    Andre

    in reply to: Customize Service For Employee not working #1160340
    Andre Flores
    Moderator

    Hello Jonathan,

    I am delighted to let you know that we have just released an Appointment Booking update v. 1.4.0 with the great multibooking feature. Now your clients are able to book several services for different dates/time at a time. Feel free to update the plugin to the latest version to get this feature.
    Your feedback about it would be much appreciated.

    Regards,
    Andre

    Andre Flores
    Moderator

    Hello Gevorg,

    You are most welcome 🙂
    It would be very much appreciated if you share your positive feedback about Creatista theme at: https://motopress.com/products/creatista/#edd-reviews-respond.

    Thank you in advance!

    Regards,
    Andre

    in reply to: Can’t always choose the current day #1159902
    Andre Flores
    Moderator

    Hello Andrea,

    I am delighted to let you know that we have just released the Hotel Booking v. 3.9.9 with guests not being able to book accommodations for the same date late in the evening issue fixed. Feel free to update the plugin to the latest version to have the issue resolved.
    You will find the full list of changes included in the latest version in plugin Release Notes.

    Regards,
    Andre

    in reply to: Booking Rules should not apply to administrators #1159896
    Andre Flores
    Moderator

    Hello Savvas,

    I am delighted to let you know that we have just released the Hotel Booking v. 3.9.9 with an option to disable booking rules for back-end bookings. Feel free to update the plugin to the latest version to get this feature.
    You will find the full list of changes included in the latest version in plugin Release Notes.

    Regards,
    Andre

    in reply to: problems with Booking Rule #1159876
    Andre Flores
    Moderator

    Hello Gabriela,

    I am delighted to let you know that we have just released the Hotel Booking v. 3.9.9 with an option to disable booking rules for back-end bookings. Feel free to update the plugin to the latest version to get this feature.
    You will find the full list of changes included in the latest version in plugin Release Notes.

    Regards,
    Andre

    in reply to: Admin Booking without Booking Rules #1159871
    Andre Flores
    Moderator

    Hello everybody,

    I am delighted to let you know that we have just released the Hotel Booking v. 3.9.9 with an option to disable booking rules for back-end bookings. Feel free to update the plugin to the latest version to get this feature.
    You will find the full list of changes included in the latest version in plugin Release Notes.

    Regards,
    Andre

    in reply to: Cancellation confirmation #1159823
    Andre Flores
    Moderator

    Hello everybody,

    I am delighted to let you know that we have just released the Hotel Booking v. 3.9.9 with the feature when bookings are not being canceled right away once the cancel link is clicked in the confirmation email. Now your guests will be asked whether they would really like to cancel their booking first.
    Feel free to update the plugin to the latest version to get that feature.

    You will find the full list of changes included in the latest version in plugin Release Notes.

    Best regards,
    Andre

    in reply to: Change order of fields in the search form #1159219
    Andre Flores
    Moderator

    You are most welcome. It would be very much appreciated if you share your positive feedback about the Hotel Booking plugin at: https://www.trustpilot.com/evaluate/www.getmotopress.com.

    Thank you in advance!

    in reply to: How to use with Elementor? #1159215
    Andre Flores
    Moderator

    Hello Scott,

    The Reviews add-on for Hotel Booking simply overrides default WordPress comment form and adds stars and rating types to it. The form is usually displayed on accommodation type pages, however, it can be also added via shortcode to any desired place on a page:

    [mphb_accommodation_reviews id="XXX"]

    Where XXX is an accommodation type ID.

    Regards,
    Andre

    in reply to: How to resend customer approved booking email #1159212
    Andre Flores
    Moderator

    Hello Vasyl,

    Thank you for the update. I have passed this information to our developers, once I receive any feedback from them, I will immediately let you know.

    Regards,
    Andre

    in reply to: Change order of fields in the search form #1158535
    Andre Flores
    Moderator

    Hello Mochael,

    Yes, it is possible by overriding default [mphb_availability_search] shortcode function. In order to do that copy the search-form.php file from /wp-content/plugins/motopress-hotel-booking/templates/shortcodes/search/ directory to /wp-content/themes/your-child-theme/hotel-booking/shortcodes/search/ directory and place the below code:

    <?php do_action( 'mphb_sc_search_form_before_attributes' ); ?>
    
    	<?php foreach ( $attributes as $attributeName => $terms ) { ?>
    		<p class="<?php echo esc_attr( 'mphb_sc_search-' . $attributeName ); ?>">
    			<label for="<?php echo esc_attr( 'mphb_' . $attributeName . '-' . $uniqid ); ?>">
    				<?php echo esc_html( mphb_attribute_title( $attributeName ) ); ?>
    			</label>
    			<br />
    			<select id="<?php echo esc_attr( 'mphb_' . $attributeName . '-' . $uniqid ); ?>" name="<?php echo esc_attr( 'mphb_attributes[' . $attributeName . ']' ); ?>">
    				
    				<?php foreach ( $terms as $termId => $termLabel ) { ?>
    					<option value="<?php echo esc_attr( $termId ); ?>"><?php echo esc_html( $termLabel ); ?></option>
    				<?php } ?>
    			</select>
    		</p>
    	<?php } ?>

    Above the following code:

    <p class="mphb_sc_search-check-in-date">
    		<label for="<?php echo esc_attr( 'mphb_check_in_date-' . $uniqid ); ?>">
    			<?php _e( 'Check-in', 'motopress-hotel-booking' ); ?>
    			<abbr title="<?php printf( _x( 'Formatted as %s', 'Date format tip', 'motopress-hotel-booking' ), MPHB()->settings()->dateTime()->getDateFormatJS() ); ?>">*</abbr>
    		</label>
    		<br />
    		<input
    			id="<?php echo esc_attr( 'mphb_check_in_date-' . $uniqid ); ?>"
    			data-datepick-group="<?php echo esc_attr( $uniqid ); ?>"
    			value="<?php echo esc_attr( $checkInDate ); ?>"
    			placeholder="<?php _e( 'Check-in Date', 'motopress-hotel-booking' ); ?>"
    			required="required"
    			type="text"
    			name="mphb_check_in_date"
    			class="mphb-datepick"
    			autocomplete="off"
    			/>
    	</p>

    Make sure to perform changes in file copied to your child theme directory in order to prevent changes from being lost after future theme updates.

    Regards,
    Andre

    in reply to: Search results showing all bookings #1158533
    Andre Flores
    Moderator
    This reply has been marked as private.
Viewing 15 posts - 421 through 435 (of 1,926 total)