Plugin Author
Paolo
(@paoltaia)
Hi,
the easiest way would be with CSS:
.geodir-search-container {
display: none;
}
Hope this helps,
thanks
Hi,
Thanks. I take it then that there is no way to edit to remove “Near”.
Steve
Plugin Author
Paolo
(@paoltaia)
Yes, there is.
If you want to remove the near field only, you can do that with this CSS:
.gd-search-field-near {
display: none;
}
Thanks,
Thank you. Is there anywhere in the documentation that I can find this information?
Steve
Also, last question on this topic. Where do you remove/change the Whoop! image on the home page above the search bar?
Thanks
Plugin Author
Paolo
(@paoltaia)
Thank you. Is there anywhere in the documentation that I can find this information?
https://wpgeodirectory.com/docs-v2/faq/common-examples/#gd_search
Similar things can be found by searching our old forum: https://wpgeodirectory.com/support/search/hide+near+me+field/
Where do you remove/change the Whoop! image on the home page above the search bar?
In the customizer to change it.
Appearance > Customize > Header > Logo.
To hide it use this CSS:
.home .site-logo {
display: none;
}
Thanks,