Skip to content

Instantly share code, notes, and snippets.

@lorenzocaum
Last active December 6, 2015 17:47
Show Gist options
  • Save lorenzocaum/80fb11fa289db2201a6a to your computer and use it in GitHub Desktop.
Save lorenzocaum/80fb11fa289db2201a6a to your computer and use it in GitHub Desktop.
How to hide the venues dropdown menu for the Events Calendar in Event Espresso 4

The CSS below can be added to your child theme's stylesheet (CSS file) or via a plugin like Reaktiv CSS Builder or My Custom CSS.

/* Hide the venues dropdown menu on the events calendar */
select#ee-venue-submit.submit-this.ee-venue-select {display:none;}

Want to hide the events category dropdown instead and keep the venues dropdown menu? Try this CSS:

/* Hide the event categories dropdown menu on the events calendar */
select#ee-category-submit.submit-this.ee-category-select {display:none;}
@lorenzocaum
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment