Forum Replies Created
- AuthorPosts
Andre Flores
ModeratorHello Rachel,
Looks like you have tried editing default .POT file, which is not correct.
I have added English language to the translation languages list, feel free to remove “till” text under Loco Translate ->Plugins ->Hotel Booking ->English (United States) at the bottom of the list ->https://prnt.sc/12vg65y.Regards,
AndreAndre Flores
ModeratorHello Louise,
Please note that the Hotel Booking plugin is not fully compatible with Polylang, so we recommend using WPML, as it is 100%-compatible with the Hotel Booking.
As for your issue, it appears to be a styling one. Provide me with the URL to the page in question, so I take a closer look at it.Regards,
AndreAndre Flores
ModeratorHello Rachel,
You may hide that field by adding the following code under Appearance ->Customize ->Additional CSS:
.mphb-guest-name-wrapper { display: none; }Regards,
AndreMay 13, 2021 at 1:25 am in reply to: Email notificacitions and pending payment time not working #1120519Andre Flores
ModeratorHello there,
Kindly check this article with possible solutions on how to resolve mailing issues in the plugin. As for the pending payment time, you should make sure your confirmation mode is set to “Confirmation upon payment” under Accommodation ->Settings tab, as Pending admin status is usually applied to booking with the confirmation mode “By admin manually” enabled.
Regards,
AndreMay 13, 2021 at 1:23 am in reply to: Payment Request – No automatic email sent to customer after payment #1120517Andre Flores
ModeratorHello Ally,
Thank you for your up-vote, it has been counted.
The confirmation notification should be sent by the payment gateway/bank itself, so yes, the user receives confirmation.Regards,
AndreMay 13, 2021 at 1:21 am in reply to: Stripe webhook delivery issues: Errors while sending the webhooks #1120515Andre Flores
ModeratorHello Gunta,
Thank you for your feedback about our Documentation, it is much appreciated. We will take it into consideration for future updates.
Please note that documentation is already available online: https://motopress.com/files/motopress-hotel-booking-plugin-documentation.pdf.As for your issue, submit a request to our Help Desk providing a temporary access to WordPress dashboard and your Stripe account, so we take a closer look at it.
Regards,
AndreAndre Flores
ModeratorThis reply has been marked as private.Andre Flores
ModeratorHello Michael,
I have added your up-vote to the feature request we have got. In case there are more requests from other users, we might consider implementing this feature in one of the plugin future updates.
Meanwhile, you may try the workaround suggested by Maurice in the reply above.Regards,
AndreAndre Flores
ModeratorHello Patti,
Unfortunately, HTML tags are not accepted in rate description at the moment. We will take your suggestion into consideration for future plugin updates though and in case there are more requests from other users, we might consider implementing this option to the plugin.
Regards,
AndreAndre Flores
ModeratorHello Ushir,
Unfortunately, provided video does not work. Get back to me with valid video link and provide temporary access to your WordPress dashboard in a private reply, so I take a closer look at the issue.
Regards,
AndreAndre Flores
ModeratorHello Wolf,
I was unable to locate the Hotel Booking availability form on your website in order to test how it works. Kindly provide me with the direct URL to the page in question, so I could check the booking process.
Regards,
AndreAndre Flores
ModeratorHello Bernard,
Thank you for your request, we will take it into consideration for future plugin updates.
Meanwhile you may ask your guests to contact administrator directly in case they are interested in booking those dates and add them to your back-end manually. For this you might need to temporary disable your min-stay booking rule.Regards,
AndreAndre Flores
ModeratorHello Jessica,
Thank you for your up-vote, it is much appreciated. I have added it to the feature request, we are currently collecting feedback from our users. In case there are more requests from them, we might consider developing such feature for one of the plugin future updates.
Regards,
AndreAndre Flores
ModeratorHello Rachel,
You will need to override default Terms & Conditions section function. In order to do that add the following code to your child theme functions.php file:
add_action( 'wp_head', 'remove_renderTermsAndConditions' ); function remove_renderTermsAndConditions(){ remove_action( 'mphb_sc_checkout_form', array( '\MPHB\Views\Shortcodes\CheckoutView', 'renderTermsAndConditions' ), 60 ); } add_action( 'mphb_sc_checkout_form', 'custom_renderTermsAndConditions', 60 ); function custom_renderTermsAndConditions(){ $termsPageId = MPHB()->settings()->pages()->getTermsAndConditionsPageId(); $termsHtml = MPHB()->settings()->main()->getTermsAndConditionsText(); if ( !empty( $termsHtml ) ) { ?> <section class="mphb-checkout-terms-wrapper mphb-checkout-section"> <div class="mphb-terms-and-conditions"> <?php echo $termsHtml; ?> </div> <p class="mphb-terms-and-conditions-accept"> <label> <input type="checkbox" id="mphb_accept_terms" name="mphb_accept_terms" value="1" required="required" /> <?php $termsPageUrl = get_permalink( $termsPageId ); $termsPagelink = '<a class="mphb-terms-and-conditions-link-theme" href="' . esc_url( $termsPageUrl ) . '" target="_blank">' . _x( 'terms & conditions', 'I\'ve read and accept the terms & conditions', 'motopress-hotel-booking' ) . '</a>'; printf( _x( 'I\'ve read and accept the %s', 'I\'ve read and accept the <tag>terms & conditions</tag>', 'motopress-hotel-booking' ), $termsPagelink ); ?> <abbr title="<?php _e( 'Required', 'motopress-hotel-booking' ); ?>">*</abbr> </label> </p> </section> <?php } }Regards,
AndreAndre Flores
ModeratorHello Rachel,
You may get rid of “till” using Loco Translate Plugin: https://prnt.sc/12u2aeg – mind the space before the “from” word.
Regards,
Andre- AuthorPosts