debsch
Forum Replies Created
-
Hi agelonwl,
Yes the location is found if I add the address to events > locations
wp-admin/post-new.php?post_type=locationbut the location is not found if I try add the address when adding an event
/wp-admin/post-new.php?post_type=eventBUT! THAT’S OK!! I’ve got the address in there now and it comes up on the add event page as a pre-defined location.
PHEW! THANK YOU!
Fabulous! I’ve updated the plugin and everything is working as it should. Thank you!
GAH!
That’s because s2member – although being a great plugin – is not designed for creating ADMIN members of any sort. All members are seen as front-end viewers only.It would be SOOOOPERDOOOOPER if the s2member roles could tie up with the native wp roles like
s2member level 1 = contributor
s2member level 2 = author etc…And I’ve read on the web that others would like the same.
BUT in the meantime – sigh – I’ve had to install another plugin (is twenty plugins too many?) to fix the problem…
Woooohooooo for the “Capability Manager” plugin!
It means I can make s2member level 2 = author and give my authors their upload/insert media button back.(But s2member plugin people it would be nice to have this option as part of the package in future if at all possible.)
Sure:
The Street name is “No 6 Branch Road” (number six).
That is the whole name, not “Branch Road”, but “No 6 Branch Road”.It’s probably called that because it leads to a place called “No 6 Branch”.
If I put “No 6 Branch” into the town field and leave the street field empty it finds “No 6 Branch”. But EM doesn’t like “No 6 Branch Road” in the street field.
The name “recurring events template” makes sense to me – a template is not a real event, it’s a template for other real events, which explains why it isn’t included in the list of events, because it isn’t one.
Aha! Yes I do.
After ordering the column “recurrence” I see that I have 1s and 0s and I have exactly eight 1s… 155 + 8 = 163
Problem solved. I’ll modify the query so it doesn’t count these recurring “master” events (do they have a name?)
THANKS!
I had a similar problem… RSS not going out because events PUBDATE was old even though the event was in the future, and I still wanted people to know about it.
Solved it by fiddling with the RSS PUBDATE
<?php $timestamp = time(); $rsstime = strtotime("-2 hours", $timestamp); ?> <pubDate><?php echo date('r',$rsstime); ?></pubDate>Has been working for me so far.
PS – please mark your post as RESOLVED if it is. This helps other out there in the same boat as you.
…. and please mark your post as RESOLVED if it is.
🙂I wanted the same thing…
events/categories/music/feed/ to display JUST music not all events…Posted a solution here http://wordpress.org/support/topic/plugin-events-manager-rss-feed-template-for-categories-located-where
So I modified the existing wordpress RSS feed…
/wp-includes/feed-rss2.php
Using if/else it allows your default RSS to display regular posts or event category feeds…
http://mysite.com/events/categories/music/feed/Find these lines…
<?php do_action('rss2_head'); ?> <?php while( have_posts()) : the_post(); ?>and replace with… (remembering the closing endif statement)
<?php do_action('rss2_head'); ?> <?php if('event' == get_post_type() ): ?> <?php $description_format = str_replace ( ">", ">", str_replace ( "<", "<", get_option ( 'dbem_rss_description_format' ) ) ); $category = get_the_terms( get_the_id(), 'event-categories' ); //////find custom taxonomy category name foreach ( $category as $cat){ $evcat = $cat->term_id; } $EM_Events = EM_Events::get( array('scope'=>'nextfortnight', 'owner'=>false, 'category'=> $evcat) ); // this line pulls in JUST the specified category... and the SCOPE nextfortnight is my own custom scope, replace it with yours or a default foreach ( $EM_Events as $EM_Event ) { $description = $EM_Event->output( get_option ( 'dbem_rss_description_format' ), "rss"); $description = ent2ncr(convert_chars(strip_tags($description))); //Some RSS filtering $event_url = $EM_Event->output('#_EVENTURL'); ?> <item> <title><?php echo $EM_Event->output( get_option('dbem_rss_title_format'), "rss" ); ?></title> <link><?php echo $event_url; ?></link> <guid><?php echo $event_url; ?></guid> <description><?php echo $description; ?></description> </item> <?php } ?> <?php else : ?> <?php while( have_posts()) : the_post(); ?> // the default stuff here.... <?php endif; ?>PHEW!
Hi and thanks for the suggestion. I tried the plugin – it added the date to urls but just date and post id, no post title. PLUS it messed with my events home page (mysite.com/events/) – the home page pulled a different template file for some reason, not the template file I had set up. I removed the plugin and reset the permalinks and it’s back to how it was. It’s not a MAJOR issue, but it would be nice to have dates with single events as well.
Could this be made the default setup on future Events Manager versions?
See if I have a single event..
http://mysite.com/events/art-workshop/
and then next week/month someone else lists another “art workshop”
it becomes
http://mysite.com/events/art-workshop-2/
and so on…http://mysite.com/events/YEAR-MONTH-DAY/art-workshop
or
http://mysite.com/events/YEAR/MONTH/DAY/art-workshop might make more sense.I’m looking for a list of examples myself…
The LIVE working examples I have found so far range from fairly basic to OMG WOW!People should add theirs to the list if they think it’ll help or inspire others. (I will when mine’s ready!)
- http://peakvibe.com/ (WOW!)
- http://thescoopmanhattan.com/events/category/arts/
- http://www.chapelbythesea.unitingchurch.org.au/events/
- http://cmocn.org/?page_id=46
- http://sidecarslo.com/events/
- http://towknight.org/events/
- http://www.clarevalleyfilmfestival.com/events/
- http://www.allhandsactive.com/events/
- http://tompkinsfireems.org/events
Forum: Plugins
In reply to: Plugin suggestion? Send multiple RSS feeds in email based on user preferenceWRONG! Mailchimp can send out multiple feeds in a single email based on the user’s interests.
So I’m sticking with mailchimp.
Forum: Plugins
In reply to: [BackUpWordPress] [Plugin: BackUpWordPress] 1.6.6 stopped workingIt’s a good easy to use & useful plugin (from my experience) but 1.6.6 just doesn’t work for whatever reason. Try it and see for yourself. Version 1.6.4 seems to work just fine though.