Events Made Easy Forums Bug fixed or feature request implemented Can't view events after upgrade to 3.2.2

Tagged: 

Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #42167
    Anonymous
    Inactive

    I upgraded to 3.2.2 and can’t view any events in my events page.

    The widget is working.

    My page template is very basic:

    <?php

    /*

    Template Name: pstv-listings

    */

    get_header(); ?>

    <div id=”content” class=”narrowcolumn”>

    <div>

    <img src=”http://www.plainandsimple.tv/images/nav/listings.jpg&#8221; width=”590″, height=”250″, alt=”Club Listings”>

    </div>

    <h1>Club Listings</h1>

    <?php the_content(); ?>

    </div>

    <?php get_sidebar(); ?>

    <?php get_footer(); ?>

    I’m pretty sure I’m not using any calls to dbem/eme so stuck as to what’s wrong.

    Site is: http://www.plainandsimple.tv/listings

    Any help appreciated.

    #45034
    Franky
    Keymaster

    Check your Settings, it might be that the “Events page” needs to be set again.

    #45035
    Anonymous
    Inactive

    Not that. Tried changing it to something else and back again and still no joy.

    Any other ideas?

    #45036
    Franky
    Keymaster

    Well, I saw that your site jumped to the correct page when clicking on a link in the widget, so I should’ve known that wasn’t the problem. From which version did you upgrade? Some extra checks were made after 3.1.4

    Also, I looked at the page template from twentyten, and I see that you’re not doing “the loop”. the_content() should always be surrounded by a “the_post()” call. See page.php from twentyten theme.

    #45037
    Franky
    Keymaster

    btw: you didn’t install the plugin “Events Manager” I hope?

    #45038
    Anonymous
    Inactive

    Sorry – I’m confused – I’m not using the twenty10 theme. It’s a modified studiopress church theme (genesis framework).

    I can’t remember which version I upgraded from. All I know is I upgraded from the EM to EME and then I ‘think’ it was the first upgrade that appeared within my wordpress admin panel.

    EM was deactivated and deleted BTW.

    There’s not that many events on there at the moment so deleting and re-installing is possible.

    Is there an easy way to do that, eg export mysql table and import again after re-installing?

    #45039
    Anonymous
    Inactive

    BTW – thanks for your support. I said before if the user permissions were changed I’d donate so if you can help me with this it will be reflected in the donation

    #45040
    Franky
    Keymaster

    Starting over is simple:

    – deactivate EME

    – remove all mysql tables related to EM or EME: normally they’re called wp_dbem_*

    – activate EME

    #45041
    Anonymous
    Inactive

    Ok – update – I changed the page template to the wp default and it’s working.

    Not sure why – anyway gonna try your comment about the twentyten theme. Understand what you’re saying now!

    #45042
    Anonymous
    Inactive

    SOLVED!

    Modified template to:

    <?php

    /*

    Template Name: pstv-listings

    */

    get_header(); ?>

    <div id=”content” class=”narrowcolumn”>

    <div>

    <img src=”http://www.plainandsimple.tv/images/nav/listings.jpg&#8221; width=”590″, height=”250″, alt=”Club Listings”>

    </div>

    <h1>Club Listings</h1>

    <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>

    <?php the_content(); ?>

    <?php endwhile; else: ?>

    <p><?php _e(‘Sorry, no posts matched your criteria.’); ?></p>

    <?php endif; ?></div>

    <?php get_sidebar(); ?>

    <?php get_footer(); ?>

    Thanks!

    🙂

    #45043
    Franky
    Keymaster

    See, I told you so: you need to be in “the loop” 🙂

Viewing 11 posts - 1 through 11 (of 11 total)
  • The forum ‘Bug fixed or feature request implemented’ is closed to new topics and replies.
Scroll to Top