Andre Flores

Forum Replies Created

Viewing 15 posts - 1,801 through 1,815 (of 1,932 total)
  • Author
    Posts
  • Hi, Tilman!

    You are welcome!

    Regards,
    Andre

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

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

    in reply to: Changing Sidebar width ? #959158

    Hi, Luis!

    You are most welcome!

    Regards,
    Andre

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

    in reply to: Reset of Loco Translation Changes? #958710

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

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

    in reply to: Reset of Loco Translation Changes? #958221

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

    Hello, Kostas!

    I see, thank you for the feedback. I am glad that we were able to get to the bottom of the issue.

    Regards,
    Andre

    in reply to: Changing Sidebar width ? #958205

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

    in reply to: Multiple Accomodation Availability Calendar #956800

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

    Hi, Sabrina!

    Kindly check my reply regarding this matter in another topic.

    Regards,
    Andre

    in reply to: Syncing Issue, Blank page #956797

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

    in reply to: Search category #956796

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

    in reply to: How to Add Category ID in Accommodation Types #956370

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

Viewing 15 posts - 1,801 through 1,815 (of 1,932 total)