Event Detail Page

Event Detail Page

The Event detail page carries various details of a particular event. These details include the event title, event type, event location, event start date & time, event end date & time, event description, etc. besides this, you can also get the details of organizers and event venues from the page.

The following screenshot shows how the event detail page appears on the webpage:

Wp Event Manager Event Detail Page

A visitor can access the following details of an event on the single page template:

  • Event Title.
  • Event Type.
  • Event Location, linked to a google map.
  • Event Posted Date.
  • Event Description.
  • Organizer information (title, tagline, logo, website link and other social media network urls)
  • Social Sharing Button.

This particular features allows you to showcase events that share the same type and category on the Event Details page. 

Once you add an event from the frontend, you will get the list similar events after adding the event type and category.

Related Event

Customization

If you face any problem with your event detail page, or you want to add and remove information from your theme, you need to go through the below-mentioned steps:

  1. Create a new template file at the theme side (../wp-content/themes/yourtheme/single-event_listing.php).
  2. Name the single-event_listing.php based on single.php
  3. You can make a new template file as copy from single.php file and rename it with name single-event_listing.php.
  4. Now edit this file and add more information as required.
  1. /*
  2.  * event detail pages use your themes single.php template and expand the content area to include other information.
  3.  *
  4.  * Template Name: Your File Name Template
  5.  * @theme Name: Your Theme Name 
  6.  */
  7. get_header();
  8.  <section>
  9.     <div class="wpem-main">     
  10.        <div class="wpem-row">  
  11.                  <!-- Start the Loop -->
  12.         <?php while ( have_posts() ) : the_post(); ?>
  13.             <?php  the_content(); ?>           
  14.         <?php endwhile; ?>
  15.         <!-- End the Loop -->          
  16.  </div>      
  17.     </div>
  18. </section>
  19. get_footer();
    • Related Articles

    • Create or pick categories from Free/ Core WP Event manager

      Events are classified into various types based on the kind of visitors they have. Visitors come from different backgrounds. That is why an event organizer or admin must ensure that they make a lot of event categories available to their clients. This ...
    • Create or pick categories from Free/ Core WP Event manager

      Events are classified into various types based on the kind of visitors they have. Visitors come from different backgrounds. That is why an event organizer or admin must ensure that they make a lot of event categories available to their clients. This ...
    • Installation of WP Event Manager

      Automatic Installation of FREE WP Event Manager Installing WP Event Manager is just a matter of a few clicks. You can add WP Event Manager to your website by using the dashboard offered to you at the backend of the CMS. To install the plugin ...
    • Updating WP Event Manager

      Automatic Update WP Event Manager always strives to achieve perfection in every way and that is why we constantly update our plugins so that you can enjoy their innovative features. Here are the steps that you need to take to update WP Event Manager: ...
    • Hide and Add column from the Event Dashboard

      An event dashboard displays all the details related to a specific event. A user can easily access the dashboard after logging into his or her account on WP Event Manager. The event dashboard column can be seen directly in the home page. A user can ...