Forum Replies Created
- AuthorPosts
Andre Flores
ModeratorHello Maurice,
The Booklium theme should be compatible with AMP plugin, feel free to install it.
Regards,
AndreAndre Flores
ModeratorHello Gevorg,
At the moment these variables can be translated only directly in public.js, public.min.js, flatpickr.js and flatpickr.min.js files for dates/months:
weekdays: { shorthand: [ __('Sun'), __('Mon'), __('Tue'), __('Wed'), __('Thu'), __('Fri'), __('Sat') ], longhand: [ __('Sunday'), __('Monday'), __('Tuesday'), __('Wednesday'), __('Thursday'), __('Friday'), __('Saturday') ] }, months: { shorthand: [ __('Jan'), __('Feb'), __('Mar'), __('Apr'), __('May'), __('Jun'), __('Jul'), __('Aug'), __('Sep'), __('Oct'), __('Nov'), __('Dec') ], longhand: [ __('January'), __('February'), __('March'), __('April'), __('May'), __('June'), __('July'), __('August'), __('September'), __('October'), __('November'), __('December') ] }, amPM: ['AM', 'PM'],And public.js and public.min.js files for Service, Date, Time, Price text:
output += '<div class="mpa-booking-order-item">'; output += '<ul class="mpa-reservation-details">'; output += '<li class="mpa-reservation-service">'; output += '<span class="mpa-label">' + __('Service:', 'motopress-appointment') + '</span>'; output += ' '; output += '<span class="mpa-value">' + serviceName + '</span>'; output += '</li>'; output += '<li class="mpa-reservation-date">'; output += '<span class="mpa-label">' + __('Date:', 'motopress-appointment') + '</span>'; output += ' '; output += '<span class="mpa-value">' + Object(dev_functions_date__WEBPACK_IMPORTED_MODULE_0__["mpa_format_date"])(cartItem.date) + '</span>'; output += '</li>'; output += '<li class="mpa-reservation-time">'; output += '<span class="mpa-label">' + __('Time:', 'motopress-appointment') + '</span>'; output += ' '; output += '<span class="mpa-value">' + cartItem.time.toString() + '</span>'; output += '</li>'; output += '<li class="mpa-reservation-price">'; output += '<span class="mpa-label">' + __('Price:', 'motopress-appointment') + '</span>'; output += ' '; output += '<span class="mpa-value">' + servicePrice + '</span>'; output += '</li>'; output += '</ul>'; output += '</div>';We are still working on improving translations in order to allow users to perform translations in language files.
Regards,
AndreAndre Flores
ModeratorHello Fenton,
The code is located in the room-content.php and results-info.php files under /wp-content/plugins/motopress-hotel-booking/templates/shortcodes/search-results/ directory, you may copy both files to the /wp-content/themes/your-theme/hotel-booking/shortcodes/search-results/ directory and perform necessary changes to the code in them.
Regards,
AndreMarch 18, 2021 at 11:45 pm in reply to: Buttons and search booking hotel does not work on the main page #1092306Andre Flores
ModeratorHello Alejandro,
I have checked your website and both the logo and the main menu are visible: https://prnt.sc/10pp803. Let me know if the issue no longer persists.
Regards,
AndreAndre Flores
ModeratorHello Carl,
As I have mentioned in my previous replies, the Maximum Advance Reservation option should not be used to allow bookings in future, if all the rates/seasons are configured properly, your guests should be able to book any number of days in future.
Kindly provide me with an Administrator role user to your WordPress dashboard in a private reply, so I take a closer look at the issue.Regards,
AndreAndre Flores
ModeratorHello Coralie,
You are most welcome.
It would be very much appreciated if you leave your positive feedback about the Hotel Booking Reviews plugin at: https://motopress.com/products/hotel-booking-reviews/#edd-reviews-respond.Thank you in advance!
Regards,
AndreMarch 18, 2021 at 11:36 pm in reply to: Can I display accommodation types listing in a grid view? #1092299Andre Flores
ModeratorHello Lucia,
You may add ids=”” parameter to the shortcode and list 6 random accommodation type ID’s there to have them displayed, e.g.:
[mphb_rooms ids="12,25,34,47,53,68"]Where “12,25,34,47,53,68” are your accommodation type ID’s.
Regards,
AndreAndre Flores
ModeratorHello Andy,
You should choose the “Show price for selected period” option for selection next to the Direct Booking Form section under Accommodation ->Settings tab – this will allow to have the price displayed along with the “the accommodation is available” message.
Regards,
AndreAndre Flores
ModeratorHello there,
You are most welcome. If you have not had a chance yet, it would be very much appreciated if you leave your positive feedback about the Booklium theme at: https://motopress.com/products/booklium/#edd-reviews-respond.
Thank you in advance!
Regards,
AndreAndre Flores
ModeratorHello Martin,
Thank you for your up-vote, it has been counted.
The Rates appear to be a custom post type, so they are stored in the the wp_options table.
Basically, the plugin was not built to have an ability to export/import rates.Regards,
AndreAndre Flores
ModeratorHello Diana,
Simply add the following code under Appearance ->Customize ->Additional CSS:
.single-room-form-wrapper .mphb-regular-price { display: none; }Regards,
AndreMarch 17, 2021 at 12:12 am in reply to: Buttons and search booking hotel does not work on the main page #1091068Andre Flores
ModeratorHello Alejandro,
It looks like a CSS z-index issue, try adding the following code under Appearance ->Customize ->Additional CSS:
.luviana-front-page-header { z-index: 999; } .front-page-widget-area { z-index: 999; }Regards,
AndreAndre Flores
ModeratorHello Andy,
You should use the [mphb_availability id=”777″] shortcode instead, where “777” is the accommodation type ID. You might also want to check out this article with some advises on setting up a single property rental.
Regards,
AndreAndre Flores
ModeratorHello there,
You may add the following code under Appearance ->Customize ->Additional CSS:
.mphbr-stars .dashicons.dashicons-star-filled { color: #XXXXXX; } .mphbr-stars .dashicons.dashicons-star-filled.active { color: #XXXXXX; }Replace #XXXXXX with any desired color code.
Regards,
AndreMarch 16, 2021 at 11:55 pm in reply to: how to change the font colors on the check-out page #1091058Andre Flores
ModeratorHello Patrick,
Email colors can be edited under Accommodation ->Settings ->Email Settings tab – scroll down to the very bottom to find Styles section.
Regards,
Andre- AuthorPosts