Andre Flores

Forum Replies Created

Viewing 15 posts - 646 through 660 (of 1,932 total)
  • Author
    Posts
  • in reply to: Remove “till” in search results #1120530

    Hello 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,
    Andre

    in reply to: Polylang issue on mobile #1120527

    Hello 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,
    Andre

    in reply to: How to remove Full Guest Name field #1120525

    Hello Rachel,

    You may hide that field by adding the following code under Appearance ->Customize ->Additional CSS:

    .mphb-guest-name-wrapper {
    	display: none;
    }

    Regards,
    Andre

    Hello 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,
    Andre

    Hello 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,
    Andre

    Hello 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,
    Andre

    in reply to: Using mphb_rooms shortcode – can I order by price? #1120509
    This reply has been marked as private.
    in reply to: Admin Booking without Booking Rules #1120507

    Hello 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,
    Andre

    in reply to: How to format description of the Rate? #1120504

    Hello 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,
    Andre

    in reply to: Maximum Adult Capacity Doesn’t Work Its stuck on 1 #1120483

    Hello 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,
    Andre

    in reply to: Checkout not working – internal server error #1119784

    Hello 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,
    Andre

    in reply to: Gap Fill Feature Request #1119778

    Hello 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,
    Andre

    in reply to: Packages in Hotel Booking #1119775

    Hello 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,
    Andre

    in reply to: New tab for terms and conditions #1119768

    Hello 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,
    Andre

    in reply to: Remove “till” in search results #1119766

    Hello Rachel,

    You may get rid of “till” using Loco Translate Plugin: https://prnt.sc/12u2aeg – mind the space before the “from” word.

    Regards,
    Andre

Viewing 15 posts - 646 through 660 (of 1,932 total)