• Resolved msrz85

    (@msrz85)


    I have teh plugin installed an the form configured in the URL provided.
    The restaurant has 5 locations, but one of them isn’t available yet for reservations.
    I want to disable this location so that it can’t be selected in the form.
    The problem is I don’t remember where i can do that.
    Hope you can help me.

    Thanks,

    Matias

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

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

    (@jaysupport)

    Hi Matias,

    You can manage your locations via the Five Star Business Profile and Schema plugin.

    You might also be able to solve this issue using custom CSS by setting “display: none” to a specific selector. If you wish to try to do it this way, you could let me know which location you want to temporarily hide and I could see if there’s any CSS that would do the trick

    Thread Starter msrz85

    (@msrz85)

    Already tried to do it editing the location profile, but I’m unable to find any option to make it uneligible in the reservation form.
    I’m not sure it can be done with CSS.
    How would you hide the location from the fomr’s input?

    Thanks for your answer!

    Thread Starter msrz85

    (@msrz85)

    Please, I need to disable this location to be selectable in the booking form.
    How can I do it? I can’t find it.
    I even sent the location to the trash bin, but it’s still available for selection.

    • This reply was modified 4 years, 1 month ago by msrz85.
    Thread Starter msrz85

    (@msrz85)

    Any clue on how to achieve what I’m trying to do @jaysupport?

    • This reply was modified 4 years, 1 month ago by msrz85.
    Plugin Support jaysupport

    (@jaysupport)

    I’m not sure which location you want to hide, so I just provided the Custom CSS for each location in the dropdown. You can paste custom CSS into the additional CSS section of your theme’s customizer.

    //I adograted
    
    #rtb-location option[value="60"] {
        display: none;
    }
    
    //Canning
    
    #rtb-location option[value="61"] {
        display: none;
    }
    
    //Lanus
    
    #rtb-location option[value="83"] {
        display: none;
    }
    
    //Lomas de zamora
    
    #rtb-location option[value="63"] {
        display: none;
    }
    
    //Ramos Mejia
    
    #rtb-location option[value="92"] {
        display: none;
    }
    • This reply was modified 4 years, 1 month ago by jaysupport.
    Thread Starter msrz85

    (@msrz85)

    Thanks for your reply, I could apply the CSS code and it worked.

    Is their a way to do this without CSS ? CSS is not disabling anything just hiding from the users , so if css is not working like for a text reader then the user can still select the “supposed to be disabled” location.

    Plugin Support jaysupport

    (@jaysupport)

    No, there is no other way to do it. Every location will appear in the dropdown. There is currently no way to pick and choose which locations show in the dropdown.

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Disable location on form’ is closed to new replies.