J. Davis

Forum Replies Created

Viewing 15 posts - 166 through 180 (of 3,450 total)
  • Author
    Posts
  • in reply to: Booking REST API Filtering #1715455

    Hi Cian,
    I’ve tested it using Postman API and it worked correctly https://prnt.sc/n8TFSYtUogMb I got 1 reservation with the proper ID. Here is a screenshot from the backed calendar https://prnt.sc/cwhj-1UYB9ON

    in reply to: Ical sync link invalid #1714494

    Hi Jennifer,
    Could you please specify what happens when you try to open the iCal URL in your browser when you are logged out of your site? Can you save the file with the ICS extension? Make sure there is no coming soon/maintenance mode enabled on your site.

    Hi, I’ve checked your site and could not see the mentioned issue. It looks like you have resolved it on your own. Feel free to ask any additional questions.

    in reply to: Multi language #1712152

    Hi Martin,
    The standard email notifications can be translated via WPML > String translations. The automatic email notifications are sent in a related language automatically. If you wish to send some notification in another language manually, you need to change the language of your Profile (top right-hand corner of the screen).
    Let me know if it is helpful or if you have any additional questions.

    in reply to: How to customize the accommodation type page layout #1712133

    Hi Brian,
    You can read this post to learn how to create a custom template for accommodation types https://motopress.com/blog/hotel-booking-styles-addon-single-accommodations/
    If you like the default layout but want to add a custom section you can use functions.

    add_action( 'mphb_render_single_room_type_metas', booklium_render_custom_section', 60);
    
    function booklium_render_custom_section(){
    echo 'test';
    }

    The code can be added to the functions.php file of a child theme or to a third-party plugin like Code Snippets.

    in reply to: Name Per Guest #1712129

    Hi,
    There is no option to add a conditional field to the checkout page to collect the name of each guest. You can use the Checkout Fields Addon to add a static required textarea to ask the guest to fill in the names of each guest.

    in reply to: Price according to the number of people #1712124

    Thanks for your feedback. I’ve added your upvote to the task. We will notify you if we have any news.

    in reply to: Styling / Function Problems #1712118

    Hi Nick,
    Thanks for your question. It looks like the calendar can not be loaded. Most likely the issue is caused by some optimization plugin that minified JS files. You can try disabling it or excluding the files of the Hotel Booking plugin.

    You can find some predefined skins for the calendar at Accommodation > Settings > Calendar Style.

    Let me know if you have any additional questions.

    in reply to: Notification day of Booking #1712113

    Hi,
    There is no such option. However, it is possible to send the notification manually whenever you need.

    Hi,
    We have released a new version of the Campterra theme. After you update the theme you need to navigate to Appearance > Install Plugins and update the Campterra Engine plugin.

    in reply to: Instagram widget stopped working. #1711025

    We are happy to announce that the issue is fixed in a new version of the Stratum plugin. This widget requires an Instagram business account. Please update the plugin and reconnect to your Instagram account.

    in reply to: Instagram widget stopped working. #1708224

    Hi Eric,
    Our developers are searching for a proper solution. We will update the topic if we have any news. Thanks

    in reply to: Hamburger Menu #1708223

    Hi Marc,
    You can try to use the following style:

    .header-dropdown.toggled-on .header-dropdown-content .main-navigation .primary-menu{
    	color:#fff;
    }
    in reply to: Booking REST API Filtering #1708219

    Hi Cian,
    You can use the example below:

    {
      "filter":{
    
          "meta_query":{
    
             "relation":"AND",
            "date":{
    
               "key":"mphb_check_in_date",
               "value":[
                  "2024-10-26",
                  "2024-10-27"
               ],
               "compare":"BETWEEN",
               "type":"DATE"
            }
         }
      }
    }

    You need to add it as JSON to the request’s body.

    in reply to: accommodation page navigation #1707552

    Hi Thierry,
    You can use the browser inspector tool to find the class of the needed element and apply custom CSS styles. You can search for posts that explain how to inspect the elements on the pages to find the names of the classes.

Viewing 15 posts - 166 through 180 (of 3,450 total)