How can we help?
Event Tag snippets
The Event Tags in WP Event Manager are designed to simplify the process of searching events. It allows users to search for events quickly with targeted keywords.
Event Tags can be customized with the help of below mentioned Event Tag snippet.
Here are the steps you need to take:
- Create a child theme and open function.php
- Add the below mention code:
add_action('event_filter_tag_cloud','wp_custom_event_manager_tag_cloud'); function wp_custom_event_manager_tag_cloud($atts){ $atts['smallest'] = 1; $atts['largest'] = 1; $atts['unit'] = "em"; $atts['number'] = "25"; $atts['format'] = "flat"; $atts['separator'] = "\n"; $atts['orderby'] = "count"; $atts['order'] = "DESC"; $atts['link'] = "view"; return $atts; }
- Save changes.