• Resolved evo252

    (@evo252)


    Hi,

    I have 4 restaurants parameted as locations on Business Profile plugin, but only 2 are taking reservations, the other one have no reservation settings. However, on the reservation page, we see the 4 restaurants, but there is no interest to show the 2 restaurants that don’t receive reservation.

    Thanks

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support jaysupport

    (@jaysupport)

    Hi evo,

    By default, all locations that you create in the business profile plugin will show as options in your booking form. However, you can use the following Custom CSS to hide specific restaurant locations in the location dropdown. You can paste it into the Additional CSS section of your theme’s customizer: WP Admin Sidebar > Appearance > Customize > Additional CSS

    /* Hide Libshop Bibliothèque */
    #rtb-location option[value="35"] {
      display: none !important;
    }
    /* Hide Libshop Boétie */
    #rtb-location option[value="37"] {
      display: none !important;
    }
    /* Hide Libshop Etienne Marcel */
    #rtb-location option[value="34"] {
      display: none !important;
    }
    /* Hide Libshop Victoire */
    #rtb-location option[value="36"] {
      display: none !important;
    }

    Also note that, if the changes are not immediately visible on the front end, it could be that you have some sort of caching going. If you are using a caching plugin, please clear your cache after adding any custom CSS.

    Thread Starter evo252

    (@evo252)

    It works like a charm, thanks a lot!!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Disable restaurant locations that have no reservation settings’ is closed to new replies.