Events Made Easy › Forums › Bug fixed or feature request implemented › Can't view events after upgrade to 3.2.2
Tagged: export
- This topic has 10 replies, 2 voices, and was last updated 14 years, 1 month ago by Franky.
-
AuthorPosts
-
Fri 15 Oct 2010 at 15:22 #42167AnonymousInactive
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” 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.
Fri 15 Oct 2010 at 15:55 #45034FrankyKeymasterCheck your Settings, it might be that the “Events page” needs to be set again.
Fri 15 Oct 2010 at 18:31 #45035AnonymousInactiveNot that. Tried changing it to something else and back again and still no joy.
Any other ideas?
Sat 16 Oct 2010 at 02:00 #45036FrankyKeymasterWell, 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.
Sat 16 Oct 2010 at 07:50 #45037FrankyKeymasterbtw: you didn’t install the plugin “Events Manager” I hope?
Sat 16 Oct 2010 at 08:11 #45038AnonymousInactiveSorry – 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?
Sat 16 Oct 2010 at 08:13 #45039AnonymousInactiveBTW – 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
Sat 16 Oct 2010 at 08:19 #45040FrankyKeymasterStarting over is simple:
– deactivate EME
– remove all mysql tables related to EM or EME: normally they’re called wp_dbem_*
– activate EME
Sat 16 Oct 2010 at 08:34 #45041AnonymousInactiveOk – 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!
Sat 16 Oct 2010 at 08:45 #45042AnonymousInactiveSOLVED!
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” 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!
🙂
Sat 16 Oct 2010 at 09:40 #45043FrankyKeymasterSee, I told you so: you need to be in “the loop” 🙂
-
AuthorPosts
- The forum ‘Bug fixed or feature request implemented’ is closed to new topics and replies.