Event Tag snippets

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:

  1. Create a child theme and open function.php
  2. Add the below mention code:
  1. add_action('event_filter_tag_cloud','wp_custom_event_manager_tag_cloud');
  2.         function wp_custom_event_manager_tag_cloud($atts){
  3.            $atts['smallest'] = 1;
  4.            $atts['largest'] = 1;
  5.            $atts['unit'] = "em";
  6.            $atts['number'] = "25";
  7.            $atts['format'] = "flat";
  8.            $atts['separator'] = "\n";          
  9. $atts['orderby'] = "count";
  10.            $atts['order'] = "DESC";
  11.            $atts['link'] = "view";
  12.       return $atts;
  13.         }
Save changes.
    • Related Articles

    • How To Install WP Event Manager Add ons

      WP Event Manager offers a huge number of addons that help you strengthen your WordPress site with some amazing and very useful event management features and functionalities. While installing a premium addon, you need to ensure that you already have ...
    • Event Tags

      Using the Event Tags plugin, you can add a new ‘event tags’ field to the submit process, show events filtered by tag via a shortcode, and add tag filtering to the standard events shortcode. Installing The Plugin The installation process is the same ...
    • Event Alerts

      The Alert plugin lets the registered users on your site create Event Alerts on a daily, weekly or fortnightly basis depending on popular searches with keywords, location or categories. Installing The Plugin The installation process is the same for ...
    • Event Calendar

      An interactive calendar that stylishly displays your upcoming event dates and details. Installing The Plugin The installation process is the same for all the addons, offered by WP Event Manager. They can be both installed automatically and manually. ...
    • Send an email notification to the organizer when a event is approved

      It will be very helpful in communication strategies if you will send an email notification to organizers once their event is approved. Following the below steps will help you to send an email notification to the organizer when an event is approved: ...