• Resolved kylebjork

    (@kylebjork)


    I have installed WP-Event Manager and multiple addons. When clicking on an event from the Event Listings Page, it opens into a new window but everything is compressed down into a screen this is only about 500 pixels wide. Content overlaps and is cut off. The file used to render the page is single.php.

    Also, when you are not logged in, only the top header portion of the event is listed. The rest of the event does not even show up.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Ashok Dudhat

    (@ashokdudhat)

    Hi,

    Please make sure that you have done this way.

    You can make new template file as copy from single.php file and rename it with name single-event_listing.php . It will look like below given example.

    <?php

    /*
    * Single event listing pages use your theme’s single.php template and expand the content area to include other information.
    *
    * Template Name: Your File Name Template
    * @theme Name: Your Theme Name

    */

    get_header();

    <section>

    <div class=”container”>

    <div class=”row”>

    <!– Start the Loop –>
    <?php while ( have_posts() ) : the_post(); ?>
    <?php the_content(); ?>
    <?php endwhile; ?>
    <!– End the Loop –>

    </div>

    </div>

    </section>

    get_footer();
    ?>

    For more information:

    https://www.wp-eventmanager.com/documentation/single-event-listing-page/

    Hitesh Makvana

    (@hiteshmakvana)

    Hi Kyle,

    This is not just template issue it is depends on the theme. Some theme has main container for custom post type template. That means you need to check which class is making issue and remove that from the default or in custom template for event listing single page.

    Thank you

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Event Not Displayed Correctly’ is closed to new replies.