pablomolinari
Forum Replies Created
-
Forum: Plugins
In reply to: [EventON - Events Calendar] Location not showing on list viewOh! Thanks a lot.
WP 3.3.2 + EM 5.1.8.5
I’ll test dev version and see what happens.Update: downgraded to 3.3 and everything works smoothly again. I’m going to test locally the upcoming releases before upgrading the live site. 🙂
It already has that line (at line 19).
I’ve disabled the modified templates on my local environment, and pagination issues are still there. It looks like it’s a wp 3.4 issue, as my custom post types pagination have the same problem, but I couldn’t get them to work properly.
Again, any help will be really appreciated. Txs!
Oh, yap, I have modified templates. Thanks, I’ll check them!
I’m not an expert but I had the same problem and I kind of patched it this way:
1) Create an event-single template (if you don’t already have one) copying the event-single.php from the events-manager/templates/templates folder to yourtheme/plugins/events-manager/templates folder (if you don’t have this folder, create it). This way you can tweak the event-single.php file without changing the original, so if it fails, you just can delete it.
2) Find the line that says:
if( $EM_Event->status == 1 ){and replace it for
if( $EM_Event->status != 1 ){Don’t know why the status item doesn’t work well (I’ve checked in my DB and it exists, and its value is 1).
I’m using version 5.0.4. Hope that 5.0.5 will fix it 😀