Organizers

Organizers

The Organizer plugin is used to display a group of organizers in a list in alphabetical order. The plugin comes with an Alphabetic filtering option.

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.

  1. 1.Automatic Installation : You can install the plugin from the backend of your WordPress. Click Here to see how you can install the plugin automatically.
  2. 2.Manual Installation : You can also install the plugin manually using SFTP or FTP tools. Click Here to see how you can install the plugin manually.

Watch the entire video for better understanding.

How To Get The Organizers List Using Shortcodes?

There are two different methods to display an Organizer’s list on your website.

  • First one is using Shortcode.
  • Second one is using the Page template.

How to get an organizer’s list using shortcodes?

  1. Go to WP-admin >> Pages >> Add New.
  2. Add a suitable title to it.
  3. Add the below mentioned shortcode into the text area of the description box.
  1. [event_organizer]
  1. Publish the page.

How To Get an Organizer’s List Using The Page Template?

Follow the below-mentioned steps to get an Organizers List with the Page Template:

  1. Create a new .php file into the root folder of your theme.
  2. Add a suitable title to it.
  3. Add the below-mentioned code into the file and save.
  1. /*
  2. * Template Name: Organizer Template
  3. * @since: 1.0.0
  4. */  
  5. <?php get_header(); ?>  

  6. <?php echo do_shortcode('[event_organizer]');?>

  7. <?php get_footer(); ?>
  1. Go to WP-admin >> Pages >> Add New.
  2. Here, you will get the “Organizer Template” option for Template under the “Page Attributes” section at the right bottom side of the page.

  3. Select that template.
  4. Publish the page. That’s it!🙂
  5. For better understanding, check the screenshot below:


Frontend View Of The Organizer’s List Page

This is how the organizer’s list will look at the front end of your website.


How To Get Single Organizer’s Details?

It is possible with the Organizer addon to view the details of a single organizer. Follow the below-mentioned steps:

  1. Go to WP-admin >> Pages >> Add New.
  2. Add a suitable title to the page.
  3. Add the below-mentioned shortcode into the text area of the description box.Only one parameter in shortcode is “id” of event [single_event_organizer id=”event_id”]:
  1. [single_event_organizer id="370"]
  1. Publish the page.

When you click on any single organizer name from the lists of all the organizers which listed by the shortcode [event_organizers] and on organizer logo displaying on the event detail page, will give you following output at the frontend side:


Advanced: Overriding/Customizing the Template Files

For overriding or customization, template files can be found in the wp-event-manager-organizers/templates/ directory. To override a template file.

  1. Create a directory “wp-event-manager-organizers” under your theme folder.
  2. Copy the template file to “/wp-content/yourtheme/wp-event-manager-organizers/” directory.
  3. Your theme will use all the template files from the “/wp-content/yourtheme/wp-event-manager-organizers/” directory instead of the plugin’s template file (/wp-content/plugins/wp-event-manager-organizers/).
  • single-organizer.php which contains the single organizer details.
  • content-organizers.php which displays a grouped and alphabetized list of all the organizers.
  • content-no-organizers-found.php which controls the message when no organizer is found.

Remember: If you have overridden template file and plugin frequently updating then you need to sync template file with new updates from the plugin’s template file for better functionality and new features.


    • Related Articles

    • Woocommerce Paid Listings

      The WooCommerce Paid Listing plugin offers the combined strength of WP Event Manager and WooCommerce Paid listing. It allows you to monetize your website and receive payment through WooCommerce. The plugin lets website owners create subscription ...
    • 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: ...
    • Attendee Information

      The Attendee Information plugin is used to collect the details of your attendees for each and every event submitted on your website. It gives users the option to select specific event fields for the specific events that attendees need to fill in when ...
    • Contact Organizer

      The Contact Organizer plugin works as a bridge between the event organizers and attendees. Users can create a Contact Organizer form with the plugin through which attendees can directly get in touch with the organizer. Installing the plugin The ...
    • Export Events

      The WP Event Manager’s Export Events plugin allows you to export all the event data through CSV files. Installing The Plugin The installation process is the same for all the addons, offered by WP Event Manager. They can be both installed ...