Forum Replies Created
- AuthorPosts
- May 28, 2020 at 7:11 am in reply to: Link to services on checkout form (or pop-up info window) #959769
Andre Flores
ModeratorHi, Tilman!
You are welcome!
Regards,
AndreMay 27, 2020 at 7:50 am in reply to: Link to services on checkout form (or pop-up info window) #959177Andre Flores
ModeratorHi, Tilman!
1). That is correct, I was referring to the shortcode, which is usually inserted to the page content. However, you may add it to the widget as well. Simply add the “Text” widget to any desired widget area and insert the shortcode into it: https://prnt.sc/sol3pr.
2). It would require some custom CSS coding, you may check an example here.
Feel free to submit a request to our Help Desk for further assistance.Regards,
AndreMay 27, 2020 at 7:34 am in reply to: Search Result / Availability List – Custom Display Options #959170Andre Flores
ModeratorHi, Tilman!
1). You may find out any element class/ID by using Inspect Element feature in your browser: https://prnt.sc/sokt0m.
2). If you would like to hide titles in the Special Offers widget, you may add the following code under Appearance ->Customize ->Additional CSS:
.mphb-widget-room-type-attributes .mphb-attribute-title { display: none; }This is how it will look like: https://prnt.sc/sokulq.
3). The availability search and its results do not affect the Special Offers widget, you select accommodation types you would like to be displayed in the widget in widget settings. If your offers are time-limited, you will need to disable/add accommodation types manually.
4). Since the widget is not affected by the search results, the “Book” button leads to accommodation details page, where your Guests could check the availability and other required details. If you think the button text may confuse your Guests, you may change its title by editing the widget PHP code. Look for the line 210 of room-content.php file under /wp-content/plugins/motopress-hotel-booking/templates/widgets/rooms/ directory:
<?php mphb_tmpl_the_loop_room_type_book_button_form(); ?>Replace it with the following:
<?php mphb_tmpl_the_loop_room_type_view_details_button(); ?>Please note, that this is a temporary solution, since changes may be reverted after the plugin update.
Regards,
AndreAndre Flores
ModeratorHi, Luis!
You are most welcome!
Regards,
AndreMay 26, 2020 at 9:37 am in reply to: Link to services on checkout form (or pop-up info window) #958753Andre Flores
ModeratorHello, Tilman!
1). You may display specific services using [mphb_services] shortcode, by adding desired services ID’s, e.g.:
[mphb_services ids="1,2,3"]Where 1,2,3 are the ID’s of services you would like to be displayed.
You may set featured image for each of the service, so they look nicer on the page.2). As for the Checkout page, you may add icons next to each service via custom CSS coding.
Regards,
AndreAndre Flores
ModeratorHi, Tilman!
You are always welcome. I am glad you were able to get to the bottom of the issue and have it resolved!
Best regards,
AndreMay 26, 2020 at 7:36 am in reply to: Search Result / Availability List – Custom Display Options #958688Andre Flores
ModeratorHello, Tilman!
The layout of the Search Results Page itself and the appearance of accommodation types on that page can be edited via custom CSS coding.
If you have a lot of amenities, you may hide them all at once or some specific ones if needed. For example, use below code to hide in-room safety amenity:.mphb-room-type-facilities .facility-in-room-safe { display: none; }Each amenity has its own CSS class, so you can easily hide any of them separately or several at once.
As for the Special Offers section, it uses the Accommodation Types widget – you may configure the look of the widget by adjusting its settings: https://prnt.sc/snw1te. You may hide Description, but enable Details, for example, it should take less space and look better.
Regards,
AndreAndre Flores
ModeratorHi, Tilman!
In your case the option would be removing translation file you have used to translate the plugin/theme. Navigate to Loco Translate ->Plugins/Themes and look for “Delete” tab – you may back-up translation files in specified paths before deleting them, just in case: https://prnt.sc/sn7zsj.
As for the changes not being applied to the language files, it may be the issue with permissions on your server, which do not allow overwriting files after changes are performed in the plugin. The issue also may be caused by some third-party plugins, I would recommend that you deactivate them in order to check whether one of them causes the issue.
If there is still no luck, do not hesitate to submit a request to our Help Desk for further investigation.Regards,
AndreMay 25, 2020 at 7:05 am in reply to: Admin and Customer does not receive Hotel Booking Plugin Email #958212Andre Flores
ModeratorHello, Kostas!
I see, thank you for the feedback. I am glad that we were able to get to the bottom of the issue.
Regards,
AndreAndre Flores
ModeratorHi, Luis!
You should also add the following CSS code to the same media query:
.site-main { max-width: 100%; }So the code will look as follows:
@media (min-width: 992px) { .site-content .widget-area { width: 20%; } .content-area { width: 75%; } .site-main { max-width: 100%; } }Note, that you will need to change the accommodation type featured image width in order to have it fit the new content width.
Regards,
AndreAndre Flores
ModeratorHello, Brian!
You may use previously mentioned ICS Calendar plugin to add an availability calendar for multiple accommodation types. Please note, that it will not allow your Guests to book directly from the calendar, however, they will be able to see what dates are free to book. This is an example of how it would look like: https://prnt.sc/skvh4m.
You may style the calendar per your desire using custom CSS.Regards,
AndreMay 21, 2020 at 6:39 am in reply to: logs are clean in the dashboard (wordpress) but no in the DB #956798Andre Flores
ModeratorAndre Flores
ModeratorHi, Sabrina!
In order to clear sync logs in your database you should run the below query in your database via phpMyAdmin tool:
UPDATEwp_optionsSEToption_value= 'a:0:{}' WHEREoption_name= 'mphb_ical_sync_rooms_queue_processed_data'Make sure to replace wp_ with your database table prefix.
Regards,
AndreAndre Flores
ModeratorHello, Arttu!
As an alternative you may create an attribute named “Category”, configure its terms according to your accommodation type categories and apply them to appropriate accommodation types (you will need to do that for each accommodation type). Finally, you will need to add newly created attribute to the availability search form, so your Guests could search for properties, depending on the category they select from the drop-down. Check this nice video on how to add custom attribute to the search form.
Regards,
AndreAndre Flores
ModeratorHello, Talha!
You may find the category ID by hovering it in your dashboard – the ID can be seen in the category URL itself: https://prnt.sc/sk5we7. Feel free to insert this ID to the widget settings in order to have accommodation types from respective category displayed.
Regards,
Andre - AuthorPosts