Change Default Events Listing View

Change Default Events Listing View

WP Event Manager tutorial shows how to Change Default Listing View of Events.

Show default events listing view

  1. Apply layout via shortcode,
  1.  [events layout_type="box"] //values for layout type: box,list
  1. Apply layout via js,
  1. /** You need to put code in theme .js file**/
  2. //if you want to set line layout default then apply this  
  3. localStorage.setItem("layout", "line-layout");
  4.  //Calendar Layout :
  5. localStorage.setItem("layout", "calendar-layout");  
  6. //Box layout
  7. localStorage.setItem("layout", "box-layout");
    • 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 ...
    • Event listings not showing up in the [events] page

      The most common reason behind this particular issue is an error in the Java Script as events are loaded through Ajax. To debug the Javascript error when the event listings are not displayed, you need to pass through the following steps: Go to your ...
    • 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 ...
    • Changing the event slug/permalink

      In this guide, we will show you how you can change or customize the event slug or permalink. It usually appears like this: http://yoursite.com/events/event-listing-title in the default settings. To customize this with WP Event Manager, you can use ...