Hello,
Thanks for reaching out! You can remove specific fields by adding a little bit of code to the functions.php file of your child theme. We have a guide with some example snippets, but to remove the date and keyword search, you will want to use the following:
add_filter( 'tribe-events-bar-filters', 'remove_tribe_bar_fields', 1000, 1 );
function remove_tribe_bar_fields( $filters ) {
if ( isset( $filters['tribe-bar-date'] ) ) {
unset( $filters['tribe-bar-date'] );
}
if ( isset( $filters['tribe-bar-search'] ) ) {
unset( $filters['tribe-bar-search'] );
}
return $filters;
}
Can you give this a try and let me know if it works for you?
We are limited in the amount of support that we can provide for customizations, but if you get stuck or have any questions, please let me know – I’ll be happy to try to point you in the right direction!
Thanks,
Jennifer