<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>Climb to the Stars - Latest Comments in Events in Wordpress</title><link>http://ctts.disqus.com/</link><description></description><atom:link href="https://ctts.disqus.com/events_in_wordpress/latest.rss" rel="self"></atom:link><language>en</language><lastBuildDate>Fri, 29 Feb 2008 05:33:09 -0000</lastBuildDate><item><title>Re: Events in Wordpress</title><link>http://climbtothestars.org/archives/2007/02/26/events-in-wordpress/#comment-1776172</link><description>&lt;p&gt;Hi Joni -- I'm really afraid I absolutely don't remember :-(&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;I'm not even sure if I found a fix or not! If it comes back to me I'll let you know, but I'm sorry I don't have time to search now (packing to leave today).&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;Good luck!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Stephanie</dc:creator><pubDate>Fri, 29 Feb 2008 05:33:09 -0000</pubDate></item><item><title>Re: Events in Wordpress</title><link>http://climbtothestars.org/archives/2007/02/26/events-in-wordpress/#comment-1776173</link><description>&lt;p&gt;I'm having the mod_rewrite problem and I'd like the solution because I'm working on two client sites right now and both really want the EC to work.  The only problem is that since we have pretty permalinks turned on, clicking on an EC event returns a 404 error.&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;What code do I need to put into what custom WP Page or .htaccess file to get this thing to work.  I've subscribed to and searched Alex's mailing list and have found nothing.&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;So how did you solve that one, Stephanie?  Inquiring minds want to know!&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;Thanks.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">pixelita</dc:creator><pubDate>Thu, 28 Feb 2008 12:58:22 -0000</pubDate></item><item><title>Re: Events in Wordpress</title><link>http://climbtothestars.org/archives/2007/02/26/events-in-wordpress/#comment-1776171</link><description>&lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;If you want the events to show up as regular posts and on a separate page. You can just post the events using a strict layout. Then create a  template which accepts ONLY your events category to show them.&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;With some small hacks i can imagine you don't need plugins at all to get done what you want :)&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;All of the info you need for this is in &lt;a href="http://codex.wordpress.org" rel="nofollow noopener" target="_blank" title="http://codex.wordpress.org"&gt;http://codex.wordpress.org&lt;/a&gt;&lt;br&gt;Do a search for 'category page'.&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;Have fun.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">SHRIKEE</dc:creator><pubDate>Fri, 02 Mar 2007 08:51:57 -0000</pubDate></item><item><title>Re: Events in Wordpress</title><link>http://climbtothestars.org/archives/2007/02/26/events-in-wordpress/#comment-1776170</link><description>&lt;p&gt;I had a similar problem once, but went for the second option: conjure up custom templates for those pages, as an in a new_archive.php. Its quite easier, and it did work properly for the time I used it.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">J S Zolliker</dc:creator><pubDate>Mon, 26 Feb 2007 10:58:25 -0000</pubDate></item><item><title>Re: Events in Wordpress</title><link>http://climbtothestars.org/archives/2007/02/26/events-in-wordpress/#comment-1776169</link><description>&lt;p&gt;At the present moment, this has morphed into a mod_rewrite problem. Here is what wordpress puts in .htaccess:&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;pre&gt;&lt;code&gt;# BEGIN WordPress&lt;br&gt;&amp;lt;IfModule mod_rewrite.c&amp;gt;&lt;br&gt;RewriteEngine On&lt;br&gt;RewriteBase /&lt;br&gt;RewriteCond %{REQUEST_FILENAME} !-f&lt;br&gt;RewriteCond %{REQUEST_FILENAME} !-d&lt;br&gt;RewriteRule . /index.php [L]&lt;br&gt;&amp;lt;/IfModule&amp;gt;&lt;br&gt;# END WordPress&lt;br&gt;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;I'd like to add a rule which goes:&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;pre&gt;&lt;code&gt;RewriteRule ^/somethingpretty/?$ /?ec3_after=today&amp;amp;cat=18&lt;br&gt;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;(I'm not 100% sure my rule is correct.) So, above the WP bloc of rules, I stuck this:&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;pre&gt;&lt;code&gt;&amp;lt;IfModule mod_rewrite.c&amp;gt;&lt;br&gt;RewriteEngine On&lt;br&gt;RewriteBase /&lt;br&gt;RewriteRule ^/somethingpretty/?$ /?ec3_after=today&amp;amp;cat=18&lt;br&gt;&amp;lt;/IfModule&amp;gt;&lt;br&gt;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;But all I get when I test it is a Wordpress-powered 404 error. I don't have access to the error logs. Any ideas, anybody?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Stephanie</dc:creator><pubDate>Mon, 26 Feb 2007 09:36:57 -0000</pubDate></item><item><title>Re: Events in Wordpress</title><link>http://climbtothestars.org/archives/2007/02/26/events-in-wordpress/#comment-1776168</link><description>&lt;p&gt;Here's the reply Alex e-mailed me -- my blog and Safari don't seem to get along:&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;blockquote&gt;&lt;br&gt;&lt;p&gt;(Safari really hates your blog - I can't post comments.)&lt;/p&gt;&lt;br&gt;&lt;p&gt;You have two choices: Use an Apache mod_rewrite rule to make a pretty URL for the query. OR embed the query into a page using a WP query_posts() call - see recent traffic on the mailing list for an example.&lt;/p&gt;&lt;br&gt;&lt;p&gt;As for separate pages for each category: Queries like ?ec3_after=today&amp;amp;cat=3 ought to work.&lt;/p&gt;&lt;br&gt;&lt;/blockquote&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;The query works -- now I just have to figure out if it's less of a pain to try to get mod_rewrite to work, or to conjure up custom templates for those pages.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Stephanie</dc:creator><pubDate>Mon, 26 Feb 2007 07:31:16 -0000</pubDate></item><item><title>Re: Events in Wordpress</title><link>http://climbtothestars.org/archives/2007/02/26/events-in-wordpress/#comment-1776167</link><description>&lt;p&gt;Hey Alex, thanks for stopping by! I've upgraded to rc1 as you suggested. And yay! I've been able to get rid of the custom loop I used on the homepage to hide events, they do display in the archives and on the category pages, and ?ec3_after=today works as I need it to.&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;So... the only problem now is to change that ugly "?" URL into a pretty WordPress Page address. I'm willing to try rewriting it again, but it failed miserably last time I tried.&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;Plus, there is still the "two categories" issue. As I've set it up, I have an "Events" category and two subcategories "France" and "Switzerland". So the events are indeed in two categories. Now how could I split the ?ec3_after=today page to display either just France, or just Switzerland?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Stephanie</dc:creator><pubDate>Mon, 26 Feb 2007 06:21:40 -0000</pubDate></item><item><title>Re: Events in Wordpress</title><link>http://climbtothestars.org/archives/2007/02/26/events-in-wordpress/#comment-1776166</link><description>&lt;p&gt;EventCalendar should do everything you want (I'm the author).&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;If you want different event categories, then just put your event posts in the "event" category AND another category.&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;The ec3_after=today query should work. Perhaps you are using the old EC3.1.0 with WP2.1? Try the newest version of EC and let me know how you get on.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alex Tingle</dc:creator><pubDate>Mon, 26 Feb 2007 05:47:43 -0000</pubDate></item></channel></rss>