Hi @pinfante,
You can remove the field from Directory Builder > Add Listing Form.
The layout of the Checkbox is meant to show in one line until it overflows. You can use CSS to change it, if you want.
Regards,
Mahdi.
Ok, thanks for that. Got it.
As for the double checkboxes, how do I fix that?
-
This reply was modified 3 years, 8 months ago by
pinfante.
-
This reply was modified 3 years, 8 months ago by
pinfante.
Here is the screenshot of the double checkboxes I refer to.
https://snipboard.io/esaRzL.jpg
How do I fix that?
Also, I want to hide (not show) ‘hide map’ at all.
Thanks
Hi @pinfante,
Can you give me the page link? If its live, I can take a look into it then.
Regards,
Mahdi.
Here is a link to the page. You’ll need to register to access it. Thanks.
https://letstalkphoto.com/add-listing-2/
Hi @pinfante,
For double Checkbox, try this:
.directorist-checkbox input[type=checkbox], .directorist-checkbox input[type=radio], .directorist-radio input[type=checkbox], .directorist-radio input[type=radio] {
display: none !important;
}
To hide Hide Map, try this:
.directorist-checkbox.directorist-hide-map-option {
display: none;
}
Regards,
Mahdi.
Mahdi, these worked great!! Thanks so much for your help!!!
-Pat