inksprite
Forum Replies Created
-
After I updated Events Manager the content in my widget entries don’t show up. When I disable Event Manager, it works just fine. Did anyone figure out a solution?
I found a quick and dirty way to fix it, but I’m wondering if there is a legitimate way. Below is what I did:
In file em-posts.php
at line 149
Replace
'rewrite' => array('slug' => 'events-recurring','with_front'=>false),
With
'rewrite' => array('slug' => 'events','with_front'=>false),
I installed both plugins on another wordpress site to test it out and it still doesn’t work. This other worpress site has no custom roles. All the roles are on default, but the “add Recurring Event” still disappears just by activating role scoper.
Caps manager does have something like publish_recurring_events, edit_recurring_events. But, I use Role Scoper because I need to put restrictions on post categories.
Role Scoper does not have anything with recurring event like publish_recurring_events, edit_recurring_events. Do you know of anyone that has Role Scoper and Events Manager both working with recurring events?
Yes, it seems that it is messing with my capabilites, but I don’t think there is a capability for recurring events, just events and event categories. I can’t find a way to switch recurring events on.
Ideas?
Great, that worked. It looks like I need to use “output” instead of “get”.
Thanks!
Well, for socialmediatrends’ code I used to get a syntax error and figured out it was missing a closing parenthesis. Now it just prints “Array” for which I suppose I could write a function to display it properly, but I’d rather the original function work.
As for the original dbem_get_events_list function — I don’t get en error. It just ignores all the arguments and prints all the events with the default format defined on the events manager settings page.
socialmediatrends, your code doesn’t seem to work for me.
And yes, I have tried deactivating all the other plugins.
Let me know if my code is off. It hasn’t changed since before the upgrade and it worked fine then.
Hi,
My code is
<?php dbem_get_events_list("limit=3&format=<tr><td><span class=\"small_gray\">#M #j, #Y</span></td><td><span class=\"large_bold\">#_NAME</span></td><td><a href=\"#_EVENTPAGEURL\">More Details</a></td></tr>"); ?>
socialmediatrends, I’ll try and see if your method works.