I want to hide the “list a service” and “post a request” buttons in the header while I have a temporary landing page up for the site. I understand I can do this with CSS? What is the code and where exactly do I paste it (I am not a tech savvy person but trying to do this myself before hiring) thank you!
Hi,
For listings, you can consider temporarily disabling the Allow submitting new listings [HivePress > Listings > Submission] option. This will remove the List a Service button.
Alternatively, please use the following CSS snippet that you can paste in WordPress Dashboard > Appearance > Customize > Additional CSS:
/* Hide List a Listing button */
.hp-menu__item--listing-submit {
display: none;
}
/* Hide Post a Request button */
.hp-menu__item--request-submit {
display: none;
}
Hope I helped with your request.
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.