<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Modern Tribe Inc. &#187; events</title>
	<atom:link href="http://tri.be/tag/events/feed/" rel="self" type="application/rss+xml" />
	<link>http://tri.be</link>
	<description>WordPress event plugins for people who kick ass</description>
	<lastBuildDate>Mon, 20 May 2013 15:29:55 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
<image><url>http://tri.be/wp-content/themes/moderntribe/images/branding/logo.png</url></image>		<item>
		<title>Revisited: Showing Events and Venues in Breadcrumbs</title>
		<link>http://tri.be/using-conditionals-to-show-breadcrumbs-for-events-and-venues/</link>
		<comments>http://tri.be/using-conditionals-to-show-breadcrumbs-for-events-and-venues/#comments</comments>
		<pubDate>Mon, 02 Jul 2012 19:05:59 +0000</pubDate>
		<dc:creator>Jonah West</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[breadcrumbs]]></category>
		<category><![CDATA[custom taxonomies]]></category>
		<category><![CDATA[events]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[navigation]]></category>
		<category><![CDATA[venues]]></category>

		<guid isPermaLink="false">http://tri.be/?p=11198</guid>
		<description><![CDATA[The Events Calendar comes with a few built-in conditionals that can be very useful when customizing your templates. The Question Recently, a user asked why events were not showing up correctly in his breadcrumbs. The Answer Unless your breadcrumb code is checking for custom taxonomies, it&#8217;s not going to know what to do with events and venues. Most breadcrumb plugins use a mix of conditionals to determine what to show, and often custom taxonomies don&#8217;t &#8230; <a href="http://tri.be/using-conditionals-to-show-breadcrumbs-for-events-and-venues/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><a href="http://tri.be/using-conditionals-to-show-breadcrumbs-for-events-and-venues/conditional-tutorial/" rel="attachment wp-att-11200"></a>The Events Calendar comes with a few built-in conditionals that can be very useful when customizing your templates.</p>
<p><strong>The Question</strong></p>
<p>Recently, a user <a href="http://tri.be/support/forums/topic/slug-not-showing-in-breadcrumbs/">asked</a> why events were not showing up correctly in his breadcrumbs.</p>
<p><strong>The Answer</strong></p>
<p>Unless your breadcrumb code is checking for custom taxonomies, it&#8217;s not going to know what to do with events and venues. Most breadcrumb plugins use a mix of conditionals to determine what to show, and often custom taxonomies don&#8217;t make it into the mix. So, let&#8217;s fix that!</p>
<p><strong>The Code</strong></p>
<p>Here&#8217;s a code snippet you can drop in your <strong>functions.php</strong> file that uses the built-in conditionals to handle events and venues.</p>
<ul>
<li>You can use it verbatim just add <strong>tribe_breadcrumbs();</strong> to your page template.</li>
<li>Or if you use a theme framework, just add an action hook wherever you want the breadcrumbs to appear: <strong>add_action(&#8216;hook_name&#8217;,'tribe_breadcrumbs&#8217;);</strong></li>
</ul>
<pre class="brush: php; title: ; notranslate">
// Check if page is direct child
function is_child($page_id) {
    global $post;
    if( is_page() &amp;&amp; ($post-&gt;post_parent != '') ) {
       return true;
    } else {
       return false;
    }
}

function tribe_breadcrumbs() {

	global $post;

	$seperator = &quot; &amp;raquo; &quot;;
	echo '&lt;a href=&quot;';
	echo get_option('home');
	echo '&quot;&gt;';
	bloginfo('name');
	echo &quot;&lt;/a&gt;&quot;;

    if( tribe_is_month() &amp;&amp; !is_tax() ) { // The Main Calendar Page

    	echo $seperator;
    	echo 'The Events Calendar';

    } elseif( tribe_is_month() &amp;&amp; is_tax() ) { // Calendar Category Pages

			global $wp_query;
			$term_slug = $wp_query-&gt;query_vars['tribe_events_cat'];
			$term = get_term_by('slug', $term_slug, 'tribe_events_cat');
			get_term( $term_id, 'tribe_events_cat' );
			$name = $term-&gt;name;
			echo $seperator;
      echo '&lt;a href=&quot;'.tribe_get_events_link().'&quot;&gt;Events&lt;/a&gt;';
      echo $seperator;
      echo $name;

		} elseif( tribe_is_event() &amp;&amp; !tribe_is_day() &amp;&amp; !is_single() ) { // The Main Events List

			echo $seperator;
      echo 'Events List';

		} elseif( tribe_is_event() &amp;&amp; is_single() ) { // Single Events

			echo $seperator;
			echo '&lt;a href=&quot;'.tribe_get_events_link().'&quot;&gt;Events&lt;/a&gt;';
			echo $seperator;
      the_title();

		} elseif( tribe_is_day() ) { // Single Event Days

			global $wp_query;
			echo $seperator;
			echo '&lt;a href=&quot;'.tribe_get_events_link().'&quot;&gt;Events&lt;/a&gt;';
			echo $seperator;
			echo 'Events on: ' . date('F j, Y', strtotime($wp_query-&gt;query_vars['eventDate']));

		} elseif( tribe_is_venue() ) { // Single Venues

			echo $seperator;
      echo '&lt;a href=&quot;'.tribe_get_events_link().'&quot;&gt;Events&lt;/a&gt;';
      echo $seperator;
      the_title();

		} elseif (is_category() || is_single()) {

			echo $seperator;
			the_category(' &amp;bull; ');
			if (is_single()) {
				echo ' '.$seperator.' ';
				the_title();
			}

    } elseif (is_page()) {

    	if(is_child(get_the_ID())) {
    		echo $seperator;
    		echo '&lt;a href=&quot;' . get_permalink($post-&gt;post_parent) . '&quot;&gt;' . get_the_title($post-&gt;post_parent) . '&lt;/a&gt;';
    		echo $seperator;
      	echo the_title();
    	} else {
    		echo $seperator;
      	echo the_title();
    	}

		} elseif (is_search()) {

      echo $seperator.'Search Results for... ';
			echo '&quot;&lt;em&gt;';
			echo the_search_query();
			echo '&lt;/em&gt;&quot;';

    }

}
</pre>
<p>This code is based on the <a href="http://diythemes.com/thesis/rtfm/breadcrumbs-without-plugins/" target="_blank">Thesis Breadcrumbs Without Plugins</a> code.</p>
]]></content:encoded>
			<wfw:commentRss>http://tri.be/using-conditionals-to-show-breadcrumbs-for-events-and-venues/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Event Tickets Pro Alpha</title>
		<link>http://tri.be/event-tickets-pro-alpha/</link>
		<comments>http://tri.be/event-tickets-pro-alpha/#comments</comments>
		<pubDate>Thu, 17 Mar 2011 20:30:28 +0000</pubDate>
		<dc:creator>Shane Pearlman</dc:creator>
				<category><![CDATA[Products]]></category>
		<category><![CDATA[events]]></category>
		<category><![CDATA[tickets]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://tri.be/?p=5030</guid>
		<description><![CDATA[Update: I am extremely excited by the initial feedback we received on our alpha build. Users were thrilled and had great ideas for changes. All in all, we are tightening up WordPress with Eventbrite. Simplification of the import process, two way syncing, credit card options and more. We also received a nice clear list of amazingly wacky bugs. We expect to pick back up on dev once we get back from sxsw and should have &#8230; <a href="http://tri.be/event-tickets-pro-alpha/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><em>Update: I am extremely excited by the initial feedback we received on our alpha build. Users were thrilled and had great ideas for changes. All in all, we are tightening up WordPress with Eventbrite. Simplification of the import process, two way syncing, credit card options and more. We also received a nice clear list of amazingly wacky bugs. We expect to pick back up on dev once we get back from sxsw and should have our first public beta in the near term (a month perhaps?).</em></p>
<h4>Sign Up for Updates</h4>
<p>We have been working hard on ECP 2.0 and are getting closer to release. Want to participate in the FREE beta or get an head up when we release? Join our newsletter (we rarely send emails unless something major is on the horizon).<br />

                <div class='gform_wrapper' id='gform_wrapper_1' style='display:none'><form method='post' enctype='multipart/form-data' target='gform_ajax_frame_1' id='gform_1'  action='/tag/events/feed/'>
                        <div class='gform_body'>
                            <ul id='gform_fields_1' class='gform_fields top_label'><li id='field_1_1' class='gfield               gfield_contains_required' ><label class='gfield_label' for='input_1_1.3'>Name<span class='gfield_required'>*</span></label><div class='ginput_complex ginput_container' id='input_1_1'><span id='input_1_1_3_container' class='ginput_left'><input type='text' name='input_1.3' id='input_1_1_3' value='' tabindex='1' /><label for='input_1_1_3'>First</label></span><span id='input_1_1_6_container' class='ginput_right'><input type='text' name='input_1.6' id='input_1_1_6' value='' tabindex='2' /><label for='input_1_1_6'>Last</label></span></div></li><li id='field_1_2' class='gfield               gfield_contains_required' ><label class='gfield_label' for='input_1_2'>Email<span class='gfield_required'>*</span></label><div class='ginput_container'><input name='input_2' id='input_1_2' type='text' value='' class='medium'  tabindex='3'  /></div></li><li id='field_1_3' class='gfield' ><label class='gfield_label' for='input_1_3'>Website</label><div class='ginput_container'><input name='input_3' id='input_1_3' type='text' value='http://' class='medium'  tabindex='4'  /></div></li><li id='field_1_6' class='gfield               gfield_contains_required' ><label class='gfield_label' for='input_1_6'>What&#039;s up?<span class='gfield_required'>*</span></label><div class='ginput_container'><select name='input_6' id='input_1_6' onchange='gf_apply_rules(1,["0",4,7,9,10,8]);' class='medium gfield_select' tabindex='5' ><option value='Please Select' >Please Select</option><option value='Hire Modern Tribe for a project' >Hire Modern Tribe for a project</option><option value='Sales question for paid plugins' >Sales question for paid plugins</option><option value='Paid plugin support request' >Paid plugin support request</option><option value='Free plugin support request' >Free plugin support request</option><option value='Help accessing my account' >Help accessing my account</option></select></div></li><li id='field_1_4' class='gfield               gfield_contains_required' style='display:none;'><label class='gfield_label' for='input_1_4'>Comments or Questions<span class='gfield_required'>*</span></label><div class='ginput_container'><textarea name='input_4' id='input_1_4' class='textarea medium' tabindex='6'  rows='10' cols='50'></textarea></div></li><li id='field_1_7' class='gfield      gfield_html gfield_html_formatted gfield_no_follows_desc' style='display:none;'>Please direct pre-sale questions to the appropriate <a href="/support/forums/forum/_welcome/pre-sales-questions/">thread at the forums.</a> This thread is open to the public so no tri.be account is required to post.</li><li id='field_1_9' class='gfield      gfield_html gfield_html_formatted gfield_no_follows_desc' style='display:none;'>Please direct all support related questions to the <a href="/support/forums/">premium support forums.</a> A tri.be account is required to post.</li><li id='field_1_10' class='gfield      gfield_html gfield_html_formatted gfield_no_follows_desc' style='display:none;'>Please direct all free plugin support-related questions to the <a href="http://wordpress.org/tags/the-events-calendar?forum_id=10">support forums at WordPress.org.</a></li><li id='field_1_8' class='gfield' style='display:none;'><label class='gfield_label'>Newsletter</label><div class='ginput_container'><ul class='gfield_checkbox' id='input_1_8'><li class='gchoice_8_1'><input name='input_8.1' type='checkbox' onclick='gf_apply_rules(1,["0"]);' value='Send me your monthly newsletter.'  id='choice_8_1' tabindex='7'  /><label for='choice_8_1'>Send me your monthly newsletter.</label></li></ul></div></li>
                            </ul></div>
        <div class='gform_footer top_label'> <input type='submit' id='gform_submit_button_1' class='button gform_button' value='Submit' tabindex='8' /><input type='hidden' name='gform_ajax' value='form_id=1&amp;title=&amp;description=' />
            <input type='hidden' class='gform_hidden' name='is_submit_1' value='1' />
            <input type='hidden' class='gform_hidden' name='gform_submit' value='1' />
            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='519a47ef47370' />
            <input type='hidden' class='gform_hidden' name='state_1' value='YToyOntpOjA7czo2OiJhOjA6e30iO2k6MTtzOjMyOiIzNWIyMTgyOTEwMjE5N2ViZTM1NWQ5MjNhNTdiZWRmMyI7fQ==' />
            <input type='hidden' class='gform_hidden' name='gform_target_page_number_1' id='gform_target_page_number_1' value='0' />
            <input type='hidden' class='gform_hidden' name='gform_source_page_number_1' id='gform_source_page_number_1' value='1' />
            <input type='hidden' name='gform_field_values' value='' />
            
        </div>
                </form>
                </div><script type='text/javascript'>if(window['jQuery']){ jQuery(document).ready(function(){gf_apply_rules(1, [4,7,9,10,8,0], true);jQuery('#gform_wrapper_1').show(0, function(){if(window['gformCalculateTotalPrice']){window['gformCalculateTotalPrice'](1);} });jQuery('#gform_1').submit(function(event, isButtonPress){    var visibleButton = jQuery('.gform_next_button:visible, .gform_button:visible, .gform_image_button:visible');    return visibleButton.length > 0 || isButtonPress == true;});});if(!window['gf_form_conditional_logic'])window['gf_form_conditional_logic'] = new Array();window['gf_form_conditional_logic'][1] = {'logic' : {4: {"field":{"actionType":"show","logicType":"any","rules":[{"fieldId":"6","operator":"is","value":"Hire Modern Tribe for a project"},{"fieldId":"6","operator":"is","value":"Help accessing my account"}]},"nextButton":null,"section":null},7: {"field":{"actionType":"show","logicType":"all","rules":[{"fieldId":"6","operator":"is","value":"Sales question for paid plugins"}]},"nextButton":null,"section":null},9: {"field":{"actionType":"show","logicType":"all","rules":[{"fieldId":"6","operator":"is","value":"Paid plugin support request"}]},"nextButton":null,"section":null},10: {"field":{"actionType":"show","logicType":"all","rules":[{"fieldId":"6","operator":"is","value":"Free plugin support request"}]},"nextButton":null,"section":null},8: {"field":{"actionType":"show","logicType":"any","rules":[{"fieldId":"6","operator":"is","value":"Hire Modern Tribe for a project"},{"fieldId":"6","operator":"is","value":"Help accessing my account"}]},"nextButton":null,"section":null},0: {"field":{"actionType":"show","logicType":"any","rules":[{"fieldId":"6","operator":"is","value":"Hire Modern Tribe for a project"},{"fieldId":"6","operator":"is","value":"Help accessing my account"}]},"section":null} }, 'dependents' : {4: [4],7: [7],9: [9],10: [10],8: [8],0: [0] }, 'animation' : 0 }; }</script>
                <iframe style='display:none;width:0px; height:0px;' src='about:blank' name='gform_ajax_frame_1' id='gform_ajax_frame_1'></iframe>
                <script type='text/javascript'>function gformInitSpinner(){jQuery('#gform_1').submit(function(){jQuery('#gform_submit_button_1').attr('disabled', true).after('<' + 'img id="gform_ajax_spinner_1"  class="gform_ajax_spinner" src="http://tri.be/wp-content/plugins/gravityforms/images/spinner.gif" alt="" />');jQuery('#gform_wrapper_1 .gform_previous_button').attr('disabled', true); jQuery('#gform_wrapper_1 .gform_next_button').attr('disabled', true).after('<' + 'img id="gform_ajax_spinner_1"  class="gform_ajax_spinner" src="http://tri.be/wp-content/plugins/gravityforms/images/spinner.gif" alt="" />');});}jQuery(document).ready(function($){gformInitSpinner();jQuery('#gform_ajax_frame_1').load( function(){var form_content = jQuery(this).contents().find('#gform_wrapper_1');var confirmation_content = jQuery(this).contents().find('#gforms_confirmation_message');jQuery('#gform_submit_button_1').removeAttr('disabled');if(form_content.length > 0){jQuery('#gform_wrapper_1').html(form_content.html());jQuery(document).scrollTop(jQuery('#gform_wrapper_1').offset().top);if(window['gformInitDatepicker']) {gformInitDatepicker();}if(window['gformInitPriceFields']) {gformInitPriceFields();}var current_page = jQuery('#gform_source_page_number_1').val();gformInitSpinner();jQuery(document).trigger('gform_page_loaded', [1, current_page]);}else if(confirmation_content.length > 0){setTimeout(function(){jQuery('#gform_wrapper_1').replaceWith('<' + 'div id=\'gforms_confirmation_message\'' + '>' + confirmation_content.html() + '<' + '/div' + '>');jQuery(document).scrollTop(jQuery('#gforms_confirmation_message').offset().top);jQuery(document).trigger('gform_confirmation_loaded', [1]);}, 50);}else{jQuery('#gform_1').append(jQuery(this).contents().find('*').html());if(window['gformRedirect']) gformRedirect();}});});</script></p>
<h3>A quick overview of the plugin:</h3>
<p>Event Tickets Pro allows users of Events Calendar Pro to directly sell tickets via WordPress using the power of the eventbrite API. No need to double enter data or visit multiple sites.</p>
<p>* Sell a wide variety of tickets: Free, Donation, Paid.<br />
* Accept money via Paypal, Google Checkout, Credit Card, Check &#038; Cash.<br />
* Automatically create Eventbrite events without leaving WordPress.<br />
* Integrates with ECP</p>
<h3>FAQ</h3>
<p><strong>Do I need to buy ECP to use this?</strong><br />
Yes.</p>
<p><strong>Can I use some other ticket platform other than Eventbrite?</strong><br />
Not with this plugin.</p>
<p><strong>My puppy made me laugh, can I tell you about it?</strong><br />
Yes, and include a photo.</p>
<p><strong>How can I get an Eventbrite Account?</strong><br />
<a href="http://www.eventbrite.com/r/etp">Follow this link to set up an account.</a></p>
<p><strong>Can I buy this plugin now?</strong><br />
Nope, but you can have it for free if you promise to give us feedback and be super nice when it breaks all your shit (this is an alpha after all).</p>
<p><strong>What will you charge?</strong><br />
We are not sure yet, but most likely it will be around $99 USD, give or take $2,000 (translation, I have no clue). Since its free now, don&#8217;t worry about it.</p>
<p><strong>Will you be supporting this plugin</strong><br />
The difference between our free and our premium plugins is that you get access to the latest features. We are not truly in the business of customer support. Code is offered on an as-is basis.</p>
<p>We read the support forums activly looking for legitimate bug reports. However, we do not offer any guarantees that this code won&#8217;t break something on your site. Any guidance that we offer is voluntary, so please be nice to us so we don&#8217;t have to pay ridiculously high therapy bills. If you really appreciate this plugin, please help other people on the forum.</p>
<p>You should hire a freelance developer if you are facing any problems with theme integration.</p>
<p>If you have a code contribution to this plugin, please post it to the forum.  We&#8217;ll review it and integrate it if it makes sense (and maybe see if you&#8217;re available for contract work).</p>
<p><strong>When will the official version one come out.</strong><br />
What a great question. We are super curious ourselves. But, we decided to do some alpha testing (good for everyone), and found some wacky bugs. And then we contracted a QA person, and he found some REALLY wacky bugs. So we figured, keep giving it away for free until it is a pretty stable product. We know that working with a rapidly changing platform (WP) and a fluid and evolving api (Eventbrite) means a moving target.</p>
]]></content:encoded>
			<wfw:commentRss>http://tri.be/event-tickets-pro-alpha/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Eventbrite for The Events Calendar 1.6</title>
		<link>http://tri.be/eventbrite-for-the-events-calendar-1-6/</link>
		<comments>http://tri.be/eventbrite-for-the-events-calendar-1-6/#comments</comments>
		<pubDate>Fri, 28 May 2010 07:40:58 +0000</pubDate>
		<dc:creator>Shane Pearlman</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[eventbrite]]></category>
		<category><![CDATA[events]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[tickets]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://tri.be/?p=687</guid>
		<description><![CDATA[We have just released a significant update to our companion WordPress plugin Eventbrite for the Events Calendar. The plugin allows you to: * Sell tickets directly from your post * Extensive template tags for customization * MU Compatible * Many of the amazing features of Eventbrite &#8211; directly from WordPress * Use shortcode to place any event ticketing on any post New features for Release 1.6: * Import event info from Eventbrite by event id &#8230; <a href="http://tri.be/eventbrite-for-the-events-calendar-1-6/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>We have just released a significant update to our companion WordPress plugin <a href="http://wordpress.org/extend/plugins/eventbrite-for-the-events-calendar/">Eventbrite for the Events Calendar</a>. The plugin allows you to:</p>
<p>* Sell tickets directly from your post<br />
* Extensive template tags for customization<br />
* MU Compatible<br />
* Many of the amazing features of Eventbrite &#8211; directly from WordPress<br />
* Use shortcode to place any event ticketing on any post</p>
<p>New features for Release 1.6:</p>
<p>* Import event info from Eventbrite by event id number.<br />
* Payment options now specified from post edit<br />
* Improved error handling and reporting<br />
* Updated to new Eventbrite logo</p>
<p>Over the next weeks, we will watch the forums and do a few small dot releases to fix bugs. Please don’t post requests for help here (I’ll ignore them), use the <a href="http://wordpress.org/tags/eventbrite-for-the-events-calendar?forum_id=10">WordPress Forum</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://tri.be/eventbrite-for-the-events-calendar-1-6/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>WordPress Events Plugin 1.6 Released</title>
		<link>http://tri.be/wordpress-events-plugin-1-6-released/</link>
		<comments>http://tri.be/wordpress-events-plugin-1-6-released/#comments</comments>
		<pubDate>Thu, 27 May 2010 07:10:53 +0000</pubDate>
		<dc:creator>Shane Pearlman</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[calendar]]></category>
		<category><![CDATA[events]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[tickets]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[workshop]]></category>

		<guid isPermaLink="false">http://tri.be/?p=684</guid>
		<description><![CDATA[This release was quite the adventure and a major work for all the contributors. Huge thanks go out to Justin Endler and Kelsey Damas took the role of batman so that I could play Robin. The community was super active and we thank you for all your support, bug reports and more. For all you who predominant speak other languages, we got quite a few new translations submitted. Over the next weeks, we will watch &#8230; <a href="http://tri.be/wordpress-events-plugin-1-6-released/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>This release was quite the adventure and a major work for all the contributors. Huge thanks go out to Justin Endler and Kelsey Damas took the role of batman so that I could play Robin. The community was super active and we thank you for all your support, bug reports and more. For all you who predominant speak other languages, we got quite a few new translations submitted. Over the next weeks, we will watch the forums and do a few small dot releases to fix bugs. Please don&#8217;t post requests for help here (I&#8217;ll ignore them), use the <a href="http://wordpress.org/tags/the-events-calendar?forum_id=10">WordPress Forum</a>.</p>
<p>This will be the last major open source release on this plugin for a short while. We are exploring the possibility of converting this to a premium plugin and will let you all know quite soon what we decide. Work on 1.7, which will be released as a premium plugin (custom post types and more) is under way.</p>
<p><strong>To Download: <a href="http://wordpress.org/extend/plugins/eventbrite-for-the-events-calendar/">The Events Plugin 1.6</a></strong><br />
<span id="more-684"></span><br />
<strong>Features</strong></p>
<p>* Child Theme support<br />
* iCal Feed of all events now accessible using http://&lt;yourUrlHere&gt;.com/?ical<br />
* Setting to include / exclude events form general loop<br />
* Subcategories in events now behave properly! (and include some css for your creative endeavors)<br />
* Get Events function no longer starts its own loop (significantly reduce conflicts with other plugins)<br />
* Added class to current day<br />
* PHP versions older than 5.1 will fail gracefully<br />
* Uninstall file<br />
* Calendar grid view now honors &#8216;posts_per_page&#8217; wordpress setting.<br />
* Calendar grid view now has &#8220;previous&#8221; and &#8220;next&#8221; month links<br />
* Widget now has options to control behavior when there are no events to display<br />
* Updates to widget layout (links to events and &#8220;read more&#8221;)<br />
* It is now possible to select no default country for events<br />
* Added a setting to control &#8220;pretty urls&#8221; to the events vs using query args (reduce conflicts with other rewrite rules)<br />
* Default times for new event updated (all day, starting tomorrow)</p>
<p><strong>Translations</strong></p>
<p>* German [Felix Bartels]<br />
* Brazilian Portuguese [Thiago Abdalla]<br />
* Dutch [Sjoerd Boerrigter]<br />
* Spanish [Los Jethrov]<br />
* Updates to Swedish Translation [Kaj Johansson]<br />
* Updates to German Translation [Andre Schuhmann]<br />
* Danish [Carsten Matzon]</p>
<p><strong>Bugs</strong></p>
<p>* Improvements to field validation<br />
* Fixes Embedded Map HTML URL Encoding so its w3c compatible (Thanks azizur!)<br />
* Usability issue: Is this post an event? Yes/No &#8212; now you can click the text and it will select your choice. (Thanks azizur!)<br />
* Fixes drag/drop issue (Thanks azizur!)<br />
* State vs Province meta values were not mutually exclusive<br />
* HTML was not properly escaped in the template<br />
* Fixes PHP short tag issue in one of the templates<br />
* in single.php, the Back to Events link no longer strictly goes to the grid view, but adheres to the default few option -pointed out by azzatron on the forum<br />
* google map link is now produced with minimal information, complete address is no longer needed, W3C-compatible output<br />
** tec_event_address() added for easy echoing of the event address<br />
** thanks to AntonLargiader and azizur on forum<br />
* improvement and debugging of entire error catching and displaying system<br />
* Fixes upcoming/past sorting issue (Thanks Elliot Silver for the support!)</p>
]]></content:encoded>
			<wfw:commentRss>http://tri.be/wordpress-events-plugin-1-6-released/feed/</wfw:commentRss>
		<slash:comments>31</slash:comments>
		</item>
		<item>
		<title>WordPress Plugins Released: Events + Eventbrite</title>
		<link>http://tri.be/wordpress-plugins-released-events-eventbrite/</link>
		<comments>http://tri.be/wordpress-plugins-released-events-eventbrite/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 01:06:11 +0000</pubDate>
		<dc:creator>Shane Pearlman</dc:creator>
				<category><![CDATA[News & Announcements]]></category>
		<category><![CDATA[Release Notes]]></category>
		<category><![CDATA[calendar]]></category>
		<category><![CDATA[event]]></category>
		<category><![CDATA[eventbrite]]></category>
		<category><![CDATA[events]]></category>
		<category><![CDATA[meeting]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[tickets]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[workshop]]></category>

		<guid isPermaLink="false">http://tri.be/?p=599</guid>
		<description><![CDATA[Looking for news and tips about our open source plugin? Follow Shane on twitter @justlikeair. Update: Thank you so much for all the nice emails and interest we have received. If you are looking for technical support, please read through the support forum and if you don&#8217;t find your answer create a new thread. We have just open sourced two plugins and would love a review / thoughts for future directions, improvement and any wisdom &#8230; <a href="http://tri.be/wordpress-plugins-released-events-eventbrite/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><em>Looking for news and tips about our open source plugin? Follow Shane  on twitter @justlikeair.</em></p>
<p><em></em><em>Update: Thank you so much for all the nice emails and interest we have received. If you are looking for technical support, please read through <a href="http://wordpress.org/tags/the-events-calendar?forum_id=10" target="_blank"><span style="color: #000000;">the support forum</span></a> and if you don&#8217;t find your answer create a new thread. </em></p>
<p>We have just open sourced two plugins and would love a review / thoughts for future directions, improvement and any wisdom on promoting an open source wordpress plugin.<a href=" http://wordpress.org/extend/plugins/the-events-calendar/"></a></p>
<p><a href=" http://wordpress.org/extend/plugins/the-events-calendar/">http://wordpress.org/extend/plugins/the-events-calendar/</a></p>
<p>The Events Calendar plugin enables you to rapidly create and manage events using the post editor. Features include optional Eventbrite integration, Google Maps integration as well as default templates such as a calendar grid and event list for streamlined one click installation.</p>
<p><a href="http://wordpress.org/extend/plugins/eventbrite-for-the-events-calendar/">http://wordpress.org/extend/plugins/eventbrite-for-the-events-calendar/</a></p>
<p>Register attendees and gather money for your events. <a href="http://www.eventbrite.com/r/simpleevents">Eventbrite</a> is FREE for no-charge events and takes a small commission for each ticket sold. This is the easiest and best way to manage your events and now it plugs directly into WordPress!!!</p>
<p>Eventbrite for The Events Calendar adds <a href="http://www.eventbrite.com/r/simpleevents">Eventbrite</a> integration to The Events Calendar. This plugin depends on The Events Calendar and has no standalone functionality. Both plugins need to be activated in order for Eventbrite functionality to work.</p>
]]></content:encoded>
			<wfw:commentRss>http://tri.be/wordpress-plugins-released-events-eventbrite/feed/</wfw:commentRss>
		<slash:comments>56</slash:comments>
		</item>
	</channel>
</rss>