<?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>PressCrew Community</title>
	<atom:link href="http://community.presscrew.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://community.presscrew.com</link>
	<description></description>
	<lastBuildDate>Fri, 24 May 2013 11:58:47 +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>
		<item>
		<title>Adding an secondary sidebar to your Commons in a Box Theme</title>
		<link>http://community.presscrew.com/tutorials/adding-an-secondary-sidebar-to-your-commons-in-a-box-theme/</link>
		<comments>http://community.presscrew.com/tutorials/adding-an-secondary-sidebar-to-your-commons-in-a-box-theme/#comments</comments>
		<pubDate>Mon, 04 Feb 2013 17:13:14 +0000</pubDate>
		<dc:creator>bowe</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Cbox]]></category>

		<guid isPermaLink="false">http://community.presscrew.com/?p=3009</guid>
		<description><![CDATA[<p>Since the CBOX Team (consisting of the CUNY Team and PressCrew) released the Commons in a Box plugin to the general public, the response has been great. It has been downloaded more then 2000 times already, and the CBOX Community has been growing rapidly. This is why we&#8217;ll try and do some CBOX related tutorials<a class="moretag" href="http://community.presscrew.com/tutorials/adding-an-secondary-sidebar-to-your-commons-in-a-box-theme/">&#8594;</a></p><p>The post <a href="http://community.presscrew.com/tutorials/adding-an-secondary-sidebar-to-your-commons-in-a-box-theme/">Adding an secondary sidebar to your Commons in a Box Theme</a> appeared first on <a href="http://community.presscrew.com">PressCrew Community</a>.</p>]]></description>
				<content:encoded><![CDATA[Since the CBOX Team (consisting of the CUNY Team and PressCrew) released the <a href="http://wordpress.org/extend/plugins/commons-in-a-box/" target="_blank">Commons in a Box plugin</a> to the general public, the response has been great. It has been downloaded more then 2000 times already, and the <a title="CBOX Community" href="http://commonsinabox.org/community" target="_blank">CBOX Community</a> has been growing rapidly.

This is why we&#8217;ll try and do some CBOX related tutorials in the upcoming weeks, to help you guys get the most out of it. In this first tutorial we are going to add a secondary sidebar to the CBOX Theme, so you can have a three-column layout. This tutorial will hopefully be really useful for those who want to learn more about extending the CBOX Theme. Let&#8217;s get started!

<strong>If you&#8217;re not interested in the code, you can download the final Child Theme with the 3 column layout at the bottom of this tutorial</strong>

<h3>Step 1: Download our pre-made CBOX Child Theme</h3>

You should never modify the CBOX Parent theme directly. We went to great efforts to allow you to change pretty much everything through a Child Theme (Theme Developers: Read our detailed <a href="http://commonsinabox.org/documentation/themes/developer-guide" title="Getting Started with CBOX" target="_blank">getting starting guide</a>). To help you get started quickly we’ve created a pre-made Child Theme that has some inline documentation and pre-made folder structures. This allows you to learn as you go and develop your child themes the same way as we do for our clients.

<a href="https://www.dropbox.com/s/aaet25aktzme0ez/cbox-child.zip" class="button orange">Download the CBOX Child Theme</a>

<h3>Step 2: Register our new sidebar</h3>

To add the new sidebar we need to register it through our functions file. Because we hate working from a messy functions.php file, we always organize our custom functionality into seperate files. In the case of CBOX we are put all our custom code into <code>engine/includes/custom.php</code>. So go ahead and open that file and add the following code to it.

<script src="https://gist.github.com/4707366.js"></script>

As a theme developer you&#8217;ve probably used this code before, all the details about the function can be found <a href="http://codex.wordpress.org/Function_Reference/register_sidebar" title="Register Sidebar CBOX" target="_blank">here</a>.

<h3>Step 3: Use a hook to add the HTML</h3>

The CBOX Theme is filled with all kinds of hooks you can use to insert your custom content easily. You can read all about this <a href="http://commonsinabox.org/documentation/themes/developer-guide/overwriting-theme-templates-and-using-hooks" title="Hooks and Templates with CBOX" target="_blank">here</a>. We are going to use the <code>open_main_wrap</code> hook to insert the HTML we need for our sidebar:

<script src="https://gist.github.com/4707552.js"></script>

As you can see we are calling the sidebar we&#8217;ve just created in Step 2, and if no widgets are added to the sidebar, show a message to &#8220;Add Widgets&#8221; to it. The trickiest thing we&#8217;re doing here, is using the conditional <code>bp_is_blog_page</code> to only add the sidebar pages on BuddyPress pages. The reason behind this is that we don&#8217;t want to show the alternative sidebar on regular WordPress pages, posts and the custom page templates (like the homepage template). If we would not add this conditional we would have the 2nd sidebar showing on every single page. 

<h3>Step 4: Add some CSS make everything look nice!</h3>

Now all we need to do is add some basic CSS to make everything look nice. CBOX is completely build using the amazing box-model grid, provided by <a href="http://foundation.zurb.com/docs/grid.php" title="Grid" target="_blank">Zurb Foundation </a>. This allows us to simply divide our three columns using percentages. We&#8217;ll use the <code>bp_is_blog_page</code> conditional again to insert a tiny bit of inline CSS to only the pages where the actual sidebar is actually shown. Add the following code to <code>engine/includes/custom.php</code>

<script src="https://gist.github.com/4707597.js"></script>

The last few lines of CSS float the sidebar to the right, so that it will display as the right column.

<h3>Enjoy the result!</h3>

That&#8217;s all there is to it! We&#8217;ve added a secondary sidebar to the CBOX Theme, with just a few lines of code, and without modifying a single file in the CBOX Parent Theme. That&#8217;s really how easy it is! If you are an experienced developer you can easily expand upon this code. 

<strong>Extra Tip</strong> If you&#8217;d like to show different widgets in the new sidebar based on where you are, you can use something like <a href="http://wordpress.org/extend/plugins/widget-logic/" title="Widget Logic" target="_blank">widget logic</a>. 

If you are having trouble getting the above tutorial to work, I&#8217;ve packaged up the Child Theme into an easy to install .zip file. 
<br />
<a class="button orange" href="https://www.dropbox.com/s/cdn2tn1zgpf2odt/cbox-child-sidebar.zip">Download: CBOX Child Theme with Sidebar</a>

<h2>What would you like to learn next?</h2>

Are there any other things you would like to know about theming with CBOX? Or maybe you&#8217;ve created something useful for others you&#8217;d like to share. Let us know in the comments!
<p>The post <a href="http://community.presscrew.com/tutorials/adding-an-secondary-sidebar-to-your-commons-in-a-box-theme/">Adding an secondary sidebar to your Commons in a Box Theme</a> appeared first on <a href="http://community.presscrew.com">PressCrew Community</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://community.presscrew.com/tutorials/adding-an-secondary-sidebar-to-your-commons-in-a-box-theme/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Commons in a Box coming to a WordPress install near you!</title>
		<link>http://community.presscrew.com/development/commons-in-a-box-coming-to-a-wordpress-install-near-you/</link>
		<comments>http://community.presscrew.com/development/commons-in-a-box-coming-to-a-wordpress-install-near-you/#comments</comments>
		<pubDate>Wed, 21 Nov 2012 13:29:29 +0000</pubDate>
		<dc:creator>bowe</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://community.presscrew.com/?p=2457</guid>
		<description><![CDATA[<p>When the Cuny Academic Commons approached us just over 6 months ago with their proposal to use Infinity to power the default theme for the ambitious Commons in a Box project, we had a small office party. Since we don&#8217;t have an office and live about 12000 miles away from each other, that meant drinking<a class="moretag" href="http://community.presscrew.com/development/commons-in-a-box-coming-to-a-wordpress-install-near-you/">&#8594;</a></p><p>The post <a href="http://community.presscrew.com/development/commons-in-a-box-coming-to-a-wordpress-install-near-you/">Commons in a Box coming to a WordPress install near you!</a> appeared first on <a href="http://community.presscrew.com">PressCrew Community</a>.</p>]]></description>
				<content:encoded><![CDATA[When the <a title="Cuny Academic Commons" href="http://commons.gc.cuny.edu/">Cuny Academic Commons</a> approached us just over 6 months ago with their proposal to use Infinity to power the default theme for the ambitious Commons in a Box project, we had a small office party. Since we don&#8217;t have an office and live about 12000 miles away from each other, that meant drinking a White Russian at exactly the same time during a Skype chat <img src='http://community.presscrew.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> 

The reason why we were so happy is because we felt that this project would have a great impact on not only ourselves and the business, but also to those who would be using CBOX. Over the last couple of months we worked closely with the CUNY Team on the project, and I can honestly say it turned out even better then we hoped.
<blockquote>Commons In A Box, funded by <a href="http://news.commons.gc.cuny.edu/2011/11/22/the-cuny-academic-commons-announces-the-commons-in-a-box-project/">a generous grant from the Alfred P. Sloan Foundation</a>, is a WordPress plugin that helps you to set up a powerful community site in no time flat. We’ve taken BuddyPress and packaged it with a number of the plugins that enhance the BuddyPress experience; bundled it with a brand-new theme based on the Infinity theme engine and provided an installation experience that downloads, activates and configures these various pieces in just a few clicks. No more scouring Google and the wordpress.org plugin repository for BuddyPress plugins. No more wondering whether an upgrade to BuddyPress or one of your other plugins will break your site. Commons In A Box takes care of these aspects for you, so that you can spend your energy where it really counts: in fostering your community. <small><a href="http://dev.commons.gc.cuny.edu/2012/11/19/commons-in-a-box-1-0-beta-1/" target="_blank">taken from the CUNY Development blog</a></small></blockquote>
The most exciting aspect for us personally was the knowledge of contributing to something that can actually have an impact beyond <em>just</em> WordPress. Since the project was announced we&#8217;ve heard stories from people who will be using it to power a wide range of communities, from Academic ones to non-profit sites. Allowing these people to build the communities using the software the CBOX team has written is something that we are incredibly proud of. A good example of how this is already happening is the <a title="YouthPolicy" href="http://youthpolicy.org/community">YouthPolicy.org</a> site that help bring together youth researchers from across the globe.

The thousands of hours of work we invested in our Infinity theme has resulted in to something that we&#8217;ve always hoped to accomplish, but never dared to reach in such a short time. We would like to thank in no particular order:
<h4>The CBOX Team</h4>
<img title="cbox-team" src="http://community.presscrew.com/files/2012/11/cbox-team.jpg" alt="" />

&nbsp;
<h4>The Alfred J Sloan Foundation for their generous grant</h4>
<a href="http://community.presscrew.com/files/2012/11/sloan-logo.jpg"><img class="alignnone" title="sloan-logo" src="http://community.presscrew.com/files/2012/11/sloan-logo-300x108.jpg" alt="" /></a>
<h4>You, the PressCrew community!</h4>
<a href="http://community.presscrew.com/files/2012/11/own-your-data.png"><img class="alignnone" title="own-your-data" src="http://community.presscrew.com/files/2012/11/own-your-data-e1353503896970.png" alt="" /></a>
<h2>Download Commons in a Box</h2>
<a href="http://commonsinabox.org/download">Download</a> our code, peruse our <a href="http://commonsinabox.org/documentation">documentation</a>, check out our <a href="http://demo.commonsinabox.org/">project demo website</a>, and join our <a href="http://commonsinabox.org/community">community</a> to find others using CBOX. Please <a href="http://twitter.com/@cbox">follow us on twitter</a> and <a href="https://docs.google.com/spreadsheet/viewform?fromEmail=true&amp;formkey=dEpLbEJXU0liM3pxejI5UzI2NmtfaVE6MQ">join our mailing list</a> to receive updates on the project.

<a class="button orange" href="http://commonsinabox.org/download">Download CBOX</a>

ps: We&#8217;ll tell you more about the Commons in a Box theme on our blog real soon. It&#8217;s pretty freaking awesome!<p>The post <a href="http://community.presscrew.com/development/commons-in-a-box-coming-to-a-wordpress-install-near-you/">Commons in a Box coming to a WordPress install near you!</a> appeared first on <a href="http://community.presscrew.com">PressCrew Community</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://community.presscrew.com/development/commons-in-a-box-coming-to-a-wordpress-install-near-you/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Opening a modal window from the admin bar</title>
		<link>http://community.presscrew.com/tutorials/opening-a-modal-window-from-the-admin-bar/</link>
		<comments>http://community.presscrew.com/tutorials/opening-a-modal-window-from-the-admin-bar/#comments</comments>
		<pubDate>Tue, 18 Sep 2012 15:09:14 +0000</pubDate>
		<dc:creator>Marshall Sorenson</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://community.presscrew.com/?p=1959</guid>
		<description><![CDATA[<p>While working on our awesome new demo system that we built for our community members, I came across the need to open a modal window from an admin bar link. I wanted to avoid creating a special screen for the demo tools links, and since the admin bar is available on every screen, it was the<a class="moretag" href="http://community.presscrew.com/tutorials/opening-a-modal-window-from-the-admin-bar/">&#8594;</a></p><p>The post <a href="http://community.presscrew.com/tutorials/opening-a-modal-window-from-the-admin-bar/">Opening a modal window from the admin bar</a> appeared first on <a href="http://community.presscrew.com">PressCrew Community</a>.</p>]]></description>
				<content:encoded><![CDATA[While working on our awesome new <a href="http://demo.presscrew.com/" target="_blank">demo system</a> that we built for our community members, I came across the need to open a modal window from an admin bar link. I wanted to avoid creating a special screen for the demo tools links, and since the admin bar is available on every screen, it was the perfect solution to avoid any hunt-and-click for common tasks that need to be performed.

Immediately I ran into a problem because I had already developed a couple of tools that generated output in a modal window, and I didn&#8217;t want to redirect users to another page, since this would be really annoying in the context of a demo. So I started digging into the <a href="http://codex.wordpress.org/Class_Reference/WP_Admin_Bar" target="_blank">Admin Bar Class</a>, specifically the <a href="http://codex.wordpress.org/Function_Reference/add_node" target="_blank">add_node()</a> method.

As luck would have it, the <strong>meta</strong> argument supports adding an <strong>onlick</strong> attribute (only if the href attributure is set). The onclick attribute allowed me to work a little jQuery magic to add the &#8220;thickbox&#8221; class to the anchor tag. Once the anchor tag has the &#8220;thickbox&#8221; class, the thickbox script click event handler fires and opens our link in a nice modal window. Its even possible to set the title of the thickbox window by setting the <strong>title</strong> attribute of the <strong>meta</strong> argument.

I put together a Gist which shows a working example for the fictitious <em>My Tools</em> plugin:

<script src="https://gist.github.com/3743211.js"></script>

If you look carefully at the onclick attribute, you will see how passing <em>this</em> to jQuery creates the context to begin modifying the anchor element which was just clicked.

I hope this tutorial helps someone out there. Enjoy!<p>The post <a href="http://community.presscrew.com/tutorials/opening-a-modal-window-from-the-admin-bar/">Opening a modal window from the admin bar</a> appeared first on <a href="http://community.presscrew.com">PressCrew Community</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://community.presscrew.com/tutorials/opening-a-modal-window-from-the-admin-bar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Infinity Release Candidate 1 is now ready for download!</title>
		<link>http://community.presscrew.com/development/infinity-release-candidate-1-is-now-ready-for-download/</link>
		<comments>http://community.presscrew.com/development/infinity-release-candidate-1-is-now-ready-for-download/#comments</comments>
		<pubDate>Tue, 03 Jul 2012 16:37:53 +0000</pubDate>
		<dc:creator>bowe</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Release Candidate]]></category>

		<guid isPermaLink="false">http://community.presscrew.com/?p=1368</guid>
		<description><![CDATA[<p>We&#8217;re happy to announce that the first 1.0 Release Candidate is now ready for you to download. We&#8217;re now quickly approaching the 1.0 stable release which means Infinity is getting more stable and truly production ready every day. In this release we&#8217;ve spent a considerable amount of time on improving performance and fine-tuning the code.<a class="moretag" href="http://community.presscrew.com/development/infinity-release-candidate-1-is-now-ready-for-download/">&#8594;</a></p><p>The post <a href="http://community.presscrew.com/development/infinity-release-candidate-1-is-now-ready-for-download/">Infinity Release Candidate 1 is now ready for download!</a> appeared first on <a href="http://community.presscrew.com">PressCrew Community</a>.</p>]]></description>
				<content:encoded><![CDATA[We&#8217;re happy to announce that the first 1.0 Release Candidate is now ready for you to download. We&#8217;re now quickly approaching the 1.0 stable release which means Infinity is getting more stable and truly production ready every day.

In this release we&#8217;ve spent a considerable amount of time on improving performance and fine-tuning the code. We&#8217;ve also fixed numerous small CSS issues and thanks to <a href='http://community.presscrew.com/members/unsalkorkmaz/' rel='nofollow'>@unsalkorkmaz</a> we&#8217;ve found some small issues inside the theme templates.

You can check out Release Candidate 1 by visiting the <a title="Infinity Homepage" href="http://infinity.presscrew.com" target="_blank">Infinity Homepage</a> and pressing the &#8220;Download&#8221; button. We&#8217;re looking forward to your feedback and issues you might run into!<p>The post <a href="http://community.presscrew.com/development/infinity-release-candidate-1-is-now-ready-for-download/">Infinity Release Candidate 1 is now ready for download!</a> appeared first on <a href="http://community.presscrew.com">PressCrew Community</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://community.presscrew.com/development/infinity-release-candidate-1-is-now-ready-for-download/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Important: Do NOT update Infinity through the WordPress auto-update system</title>
		<link>http://community.presscrew.com/updates/important-do-not-update-infinity-through-the-wordpress-auto-update-system/</link>
		<comments>http://community.presscrew.com/updates/important-do-not-update-infinity-through-the-wordpress-auto-update-system/#comments</comments>
		<pubDate>Fri, 29 Jun 2012 14:28:18 +0000</pubDate>
		<dc:creator>bowe</dc:creator>
				<category><![CDATA[updates]]></category>

		<guid isPermaLink="false">http://community.presscrew.com/?p=1334</guid>
		<description><![CDATA[<p>It has come to our attention that several of you were prompted with an notification to upgrade Infinity to a newer version through the WordPress Dashboard. Do not do this! Sadly because of a long standing issue in the way WordPress handles theme and plugin updates it will overwrite &#8220;our&#8221; Infinity with a theme from<a class="moretag" href="http://community.presscrew.com/updates/important-do-not-update-infinity-through-the-wordpress-auto-update-system/">&#8594;</a></p><p>The post <a href="http://community.presscrew.com/updates/important-do-not-update-infinity-through-the-wordpress-auto-update-system/">Important: Do NOT update Infinity through the WordPress auto-update system</a> appeared first on <a href="http://community.presscrew.com">PressCrew Community</a>.</p>]]></description>
				<content:encoded><![CDATA[It has come to our attention that several of you were prompted with an notification to upgrade Infinity to a newer version through the WordPress Dashboard. <strong>Do not do this!</strong>

Sadly because of a long standing issue in the way WordPress handles theme and plugin updates it will overwrite &#8220;our&#8221; Infinity with a theme from the WordPress.org theme repo also called &#8220;Infinity&#8221;.

<strong>IF YOU UPDATE INFINITY THROUGH YOUR WP ADMIN DASHBOARD YOU WILL OVERWRITE INFINITY AND YOUR SITE WILL BREAK</strong>

It&#8217;s a mess, and we hope that most of you have not applied this &#8220;update&#8221; yet.
<h3>How are we planning to solve this issue?</h3>
We&#8217;ve contacted the owners of the Infinity theme currently being hosted in the WP.org Theme Repository. Here&#8217;s part of that email so you get a better understanding of what exactly happens behind the scenes.
<div class="press-release">

&#8220;Our Infinity is also a free WordPress Theme and has been released about a year ago (http://infinity.presscrew.com). We&#8217;ve build a great community of users of the past year, and it has become a valuable tool our users.

Currently our theme is in beta 3 and thousands of people have downloaded it. Today all our users got prompted to update to a new version of Infinity through the WordPress dashboard. We were extremely confused because we had not pushed out any update (since the theme is not yet in the repo!).

It turns out that it&#8217;s actually WordPress thinking that your version of Infinity is the theme that&#8217;s being used by our users. In practice this means that several of our users have accidently overwritten our theme with yours.

Because we were not aware of WordPress being so &#8220;stupid&#8221; we had not registered the theme name slug on the WP.org repo. I now wish we did!&#8221;

</div>
We&#8217;re now speaking to the guys from <a href="http://designcoral.com/">DesignCoral</a> to see if we can this issue sorted. If we&#8217;re not able to work something out, we will need to change the folder name of Infinity or find another solution to prevent the update to show up.
<h3>Was there any way this could have been prevented?</h3>
Yes there was.. What we <em>could</em> and maybe <em>should</em> have done was reserve the slug &#8220;infinity&#8221; in the WP.org Theme repository. But we believe that it&#8217;s not a smart idea to release a theme that is still in beta to the WP.org repo. Another option would be to quickly hack together a WordPress Theme and call that Infinity just to have the spot in the WP Repo. Another bad idea if you ask us.

Apparently this has happened to other theme developers before, and the issue has been brought up many times to the WordPress Core Developers. Sadly there does not seem to be an easy fix as of yet, and no solution is on the horizon (yet).

We&#8217;ll keep you updated while we&#8217;re working on a solution.

Bowe and Marshall<p>The post <a href="http://community.presscrew.com/updates/important-do-not-update-infinity-through-the-wordpress-auto-update-system/">Important: Do NOT update Infinity through the WordPress auto-update system</a> appeared first on <a href="http://community.presscrew.com">PressCrew Community</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://community.presscrew.com/updates/important-do-not-update-infinity-through-the-wordpress-auto-update-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Say Hello to the Infinity-Powered Commons in a Box Project!</title>
		<link>http://community.presscrew.com/development/say-hello-to-the-infinity-powered-commons-in-a-box-project/</link>
		<comments>http://community.presscrew.com/development/say-hello-to-the-infinity-powered-commons-in-a-box-project/#comments</comments>
		<pubDate>Mon, 21 May 2012 11:30:22 +0000</pubDate>
		<dc:creator>bowe</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Cbox]]></category>

		<guid isPermaLink="false">http://community.presscrew.com/?p=1191</guid>
		<description><![CDATA[<p>We have been working on Infinity for almost two years. Before we started we had a clear vision of how we wanted our work to be used by the WordPress community. We&#8217;ve always hoped that making Infinity 100% GPL and community driven would lead to it being used for useful and inspiring causes that were<a class="moretag" href="http://community.presscrew.com/development/say-hello-to-the-infinity-powered-commons-in-a-box-project/">&#8594;</a></p><p>The post <a href="http://community.presscrew.com/development/say-hello-to-the-infinity-powered-commons-in-a-box-project/">Say Hello to the Infinity-Powered Commons in a Box Project!</a> appeared first on <a href="http://community.presscrew.com">PressCrew Community</a>.</p>]]></description>
				<content:encoded><![CDATA[We have been working on Infinity for almost two years. Before we started we had a clear vision of how we wanted our work to be used by the WordPress community. We&#8217;ve always hoped that making Infinity 100% GPL and community driven would lead to it being used for useful and inspiring causes that were freely available for anyone to use.

Today we can announce exactly such a project, and we&#8217;re extremely proud that Infinity is the engine powering it.
<div class="press-release">
<h3>The Commons in a Box Project</h3>
The <a href="http://commonsinabox.org">Commons In A Box</a> project aims to provide universities and similarly minded organizations with a powerful, professional, free, and easy-to-use platform for community engagement. A central part of any such platform is its <em>interface</em>.

CBox is built on BuddyPress and will work with any BP-compatible WordPress theme. Thus, organizations with the right kind of know-how will be able to use WordPress&#8217;s theming system to create a CBox interface for their community that is totally unique. At the same time, we believe it&#8217;s crucial that CBox comes pre-packaged with a default theme that will serve the purposes, both functional and aesthetic, of users that <em>don&#8217;t</em> have in-house WordPress development talent.

This means that an excellent default theme is critical to the central aims of Commons In A Box: to bring the power of BuddyPress-based communities to organizations that don&#8217;t have the resources to build from scratch.

That&#8217;s why we&#8217;re thrilled to announce that the Commons In A Box default theme will be designed and built by Marshall Sorenson and Bowe Frankema of PressCrew, using their <a href="http://infinity.presscrew.com/">Infinity Theming Engine</a>.

Infinity is a perfect fit for Commons In A Box. In the world of WordPress Themes, compatibility with BuddyPress is often absent, or an afterthought. Infinity, in contrast, was conceived and developed with
BuddyPress in mind. For newcomers to WordPress and BuddyPress, Infinity&#8217;s unique configuration file system makes setup a snap. It&#8217;s just a matter of turning on and off features to customize your BuddyPress installation how you want it. And for those who do have some WordPress theme development experience, Infinity offers unparalleled features that make advanced customization both fast and easy. The ease with which designers can realize their creations is exactly why the team chose the slogan &#8220;More Freedom to Create&#8221;.

Marshall and Bowe are as passionate about the value of free software as the Commons In A Box team: Infinity, like CBox, is GPL-licensed, costs nothing to download and use, and is open to contributions from the community of users and developers. Between PressCrew and <a href="http://infinity.presscrew.com/">Ray</a>, the Commons In A Box team probably contains more BuddyPress talent than any other project.
<a class="button black" href="http://news.commons.gc.cuny.edu/" title="CUNY in a Box" target="_blank">Read the Full Announcement on the CUNY News Blog</a>
</div>

<h3>What Does this Mean for you?</h3>
Even if you&#8217;re not in the business of creating a social network for your school, university or organisation using Commons in a Box, <strong>your Infinity project will still benefit hugely from the work we&#8217;ll be doing on it</strong>.
<ul class="checkbox">
	<li><strong>All the new features and improvements made for the CBox Theme will also make it into Infinity Base</strong>. This means a LOT of awesome new functionality for your projects!</li>
	<li><strong>The number of developers and designers working on Infinity will expand</strong> because of CBox. This ensures a healthy future for Infinity, with a community of people actively working on the project.</li>
	<li><strong>Hundreds and potentially thousands of Universities and Organisations around the world will be using Infinity!</strong> Most of these networks will be high on users and this allows us to do extensive testing and improve Infinity where needed.</li>
	<li><strong>Our community will grow and evolve into a place where you can find in-depth tutorials, extensions, Child Themes and support from other Infinity users</strong>. Both the regular Infinity user (you) and the CBox users will find a home on our Community hub, and we&#8217;ll be one big happy family sharing Infinity awesomeness</li>
</ul>
<h3>Some People We Would Like You to Meet!</h3>
Over the next couple of months we&#8217;ll be joining forces with two people who&#8217;ve most of you probably heard of before: <a title="Boone" href="http://boone.gorg.es/about/" target="_blank">Boone B Gorges</a> and <a title="Ray" href="http://buddypress.org/community/members/r-a-y/" target="_blank">Ray</a>.

As BuddyPress Core Contributors they are known for their hard work at making BuddyPress what it is today, and we&#8217;re really excited to be working along side them.
<h3>What Do You Think?</h3>
Are you planning on using CBox for your project? We&#8217;d love to hear your plans and ideas! We&#8217;ll be posting regular updates through <a title="PressCrew Twitter" href="https://twitter.com/#!/presscrew" target="_blank">Twitter</a> and on this blog.

If you&#8217;re new to Infinity, and want to learn more about what it can do, check out the <a title="Infinity" href="http://infinity.presscrew.com" target="_blank">Infinity site</a> to get started!<p>The post <a href="http://community.presscrew.com/development/say-hello-to-the-infinity-powered-commons-in-a-box-project/">Say Hello to the Infinity-Powered Commons in a Box Project!</a> appeared first on <a href="http://community.presscrew.com">PressCrew Community</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://community.presscrew.com/development/say-hello-to-the-infinity-powered-commons-in-a-box-project/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Infinity Beta 3 Survival Guide</title>
		<link>http://community.presscrew.com/updates/infinity-beta-3-survival-guide/</link>
		<comments>http://community.presscrew.com/updates/infinity-beta-3-survival-guide/#comments</comments>
		<pubDate>Mon, 16 Apr 2012 16:11:06 +0000</pubDate>
		<dc:creator>Marshall Sorenson</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[updates]]></category>
		<category><![CDATA[beta]]></category>
		<category><![CDATA[release]]></category>

		<guid isPermaLink="false">http://community.presscrew.com/?p=1039</guid>
		<description><![CDATA[<p>Don't let the title scare you! If you are reading this, I have your attention, so my slightly exaggerated title worked :)  There is nothing scary about the soon-to-be-released Infinity Beta 3, but there are some significant changes that <strong>might </strong>affect you if you are using Infinity for a production site.

Before I get to that, I want everyone to know that Infinity is still getting a ton of love from us. Many hundreds of hours have been put into it by myself and Bowe since beta 2. A large majority of the time spent has been acting on feedback we have received from the community. We have received some great ideas, advice, critiques and mentoring, so thank you so much for your contributions!</p><p>The post <a href="http://community.presscrew.com/updates/infinity-beta-3-survival-guide/">Infinity Beta 3 Survival Guide</a> appeared first on <a href="http://community.presscrew.com">PressCrew Community</a>.</p>]]></description>
				<content:encoded><![CDATA[Don&#8217;t let the title scare you! If you are reading this, I have your attention, so my slightly exaggerated title worked <img src='http://community.presscrew.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   There is nothing scary about the soon-to-be-released Infinity Beta 3, but there are some significant changes that <strong>might </strong>affect you if you are using Infinity for a production site.

Before I get to that, I want everyone to know that Infinity is still getting a ton of love from us. Many hundreds of hours have been put into it by myself and Bowe since beta 2. A large majority of the time spent has been acting on feedback we have received from the community. We have received some great ideas, advice, critiques and mentoring, so thank you so much for your contributions!

&nbsp;
<h3>Philosophy Changes</h3>
When we started Infinity well over a year ago we set out to make our own lives easier. In the process we felt we had come up with some pretty cool innovations that could be useful to the community so we decided to release what we had completed so far. The response was staggering, with nearly 300 people joining the community within the first 90 days (we are at 600 now!). To say we were unprepared for this kind of response is like saying &#8220;The Dude likes to roll.&#8221;

Since Infinity was originally developed as a working parent theme, some WordPress developers have struggled to work it into their workflow. We have reports of many different road blocks depending on development cycle, or technical reasons, or missing features, etc. Because of this, <strong>we have decided to branch development in to three overlapping packages.</strong>
<ol>
	<li><strong>Engine Only</strong> &#8211; The goal of this package is to make it possible to ship Infinity bundled with any theme, or as a bare bones parent theme which only ships with the index.php template. In addition, this package will have no features enabled and no styles or scripts enqueued by default.</li>
	<li><strong>Base Theme</strong> &#8211; This package will include the engine (1), as well as all of the theme files and assets which currently ship with Infinity. This theme will work as a parent theme out-of-the-box, and should behave exactly as the &#8220;original&#8221; Infinity always has.</li>
	<li><strong>BuddyPress Theme</strong> &#8211; This package will be identical to the base theme (2), but will also ship with all of the default BuddyPress component templates included. We have struggled with this decision to fork the component templates for a long time. Its not something we really want to do, but frankly we are weary from working around all of the quirks associated with extending bp-default theme. It will remain our goal to make as few modifications as necessary to the templates, but we will look to the community for guidance on when it makes sense to &#8220;go it alone.&#8221;</li>
</ol>
<h3></h3>
<h3>Functionality Changes</h3>
There are a few annoying things hanging around that we want to resolve before adoption becomes more widespread.  These changes <strong>might </strong>break your theme depending on your specific scenario, so please read them carefully and plan accordingly.
<ol>
	<li>The PIE library has been renamed to the ICE (Infinity Component Engine) library. This should not have an effect on you unless you have extended any of the PHP classes in the PIE library.</li>
	<li>All custom extension class names must now begin with &#8220;ICE_Ext_&#8221; instead of the previous convention which was &#8220;Infinity_Exts&#8221;.</li>
	<li>All internal code and component extensions now generate CSS in a much more semantic manner, instead of the long unique class names that were generated previously.</li>
	<li>Theme options are now saved <strong>per theme</strong>. Since Infinity can now be used to created completely unique child themes, saving theme options globally is a huge problem. If you use Infinity in a production environment you will need to back up all of your options and set them again.</li>
	<li>All of the translatable strings which previously existed in the PIE library text domain have been switched to the same text domain as Infinity. This should pave the way for the long awaited ability to create translations.</li>
</ol>
<h3></h3>
<h3>What&#8217;s New?</h3>
So many new features and innovations have been added over the past few months, that its not really in the scope of this topic to go into detail here, but we want to touch on the major ones just to bring you up to speed.
<ul>
	<li>BuddyPress template pack is no <strong>longer required for BuddyPress suppor</strong>t. Instead you need to download the Infinity BuddyPress branch/package.</li>
	<li>Infinity error handling is now disabled by default.</li>
	<li><strong>Massive overhaul and improvements to the extension API.</strong></li>
	<li>Feature components can now ship with an options.ini for defining options that are required by the extension.</li>
	<li>Component configuration values can now contain macros that refer to any other directive of the same component. For example: &#8220;This is a description for the %title% component&#8221;</li>
	<li><strong>Native LESS support</strong>. Any component stylesheets with the extension &#8220;.less&#8221; are automatically parsed and compiled.</li>
	<li>Many powerful new option widgets like Slider and Overlay Picker.</li>
	<li>Major clean up of path locating and building. This has greatly improved Windows support.</li>
	<li><strong>New base theme design</strong> with top-to-bottom CSS overhaul and clean up.</li>
	<li>Just about anything design related is now a feature which can be toggled on or off.</li>
</ul>
<h2></h2>
<h2>What&#8217;s Next?</h2>
We have a million ideas for new things we want to do. Unfortunately we can&#8217;t play around forever, so we are making a serious effort to stop tinkering and start stabilizing Infinity. As such, we are going to try to limit our development over the next few weeks to tasks which get us to a final release:
<ol>
	<li>Cleaning up loose ends of functionality that we want to keep.</li>
	<li>Killing off or punting any functionality that is not close to being done.</li>
	<li>Release a POT file to translators.</li>
	<li>Optimize code for performance.</li>
	<li>Add functionality required to more easily maintain production sites from a workflow standpoint.</li>
</ol>
&nbsp;
<h3>Some dates</h3>
We really want to get more people involved in the project, and to do this we know developers need to feel confident that the code is stable. Here is what we are shooting for as far as a road map towards a stable release goes.
<p style="padding-left: 30px;"><strong>April 2012</strong> &#8211; Ship Beta 3</p>
<p style="padding-left: 30px;"><strong>May 2012</strong> &#8211; Ship one or more release candidates</p>
<p style="padding-left: 30px;"><strong>June 2012</strong> &#8211; Ship first stable version</p>
<strong>Thanks to everyone that has contributed their time and/or money to the project so far, and we look forward to welcoming new members into the community over the rest of the year!</strong><p>The post <a href="http://community.presscrew.com/updates/infinity-beta-3-survival-guide/">Infinity Beta 3 Survival Guide</a> appeared first on <a href="http://community.presscrew.com">PressCrew Community</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://community.presscrew.com/updates/infinity-beta-3-survival-guide/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Infinity is on GitHub</title>
		<link>http://community.presscrew.com/updates/infinity-is-on-github/</link>
		<comments>http://community.presscrew.com/updates/infinity-is-on-github/#comments</comments>
		<pubDate>Tue, 20 Dec 2011 16:55:24 +0000</pubDate>
		<dc:creator>Marshall Sorenson</dc:creator>
				<category><![CDATA[updates]]></category>

		<guid isPermaLink="false">http://community.presscrew.com/?p=759</guid>
		<description><![CDATA[<p>Its been a while since our last beta release, and the natives seem to be getting restless! We have been getting a lot of private messages asking us where we are at with the project, and when we will be release beta 3. After the feedback we have received from the first two beta releases<a class="moretag" href="http://community.presscrew.com/updates/infinity-is-on-github/">&#8594;</a></p><p>The post <a href="http://community.presscrew.com/updates/infinity-is-on-github/">Infinity is on GitHub</a> appeared first on <a href="http://community.presscrew.com">PressCrew Community</a>.</p>]]></description>
				<content:encoded><![CDATA[<a href="http://community.presscrew.com/files/2011/12/GitHub-Teaser.jpg"><img class="alignnone size-full wp-image-767" title="GitHub-Teaser" src="http://community.presscrew.com/files/2011/12/GitHub-Teaser.jpg" alt="" width="674" height="200" /></a>
Its been a while since our last beta release, and the natives seem to be getting restless! We have been getting a lot of private messages asking us where we are at with the project, and when we will be release beta 3.

After the feedback we have received from the first two beta releases we had to dive back in deeper than we expected to support some of the most requested features/changes.
<ul class="checkbox">
	<li>Easier to customize control panel (done!)</li>
	<li>Responsive wire frame (done!)</li>
	<li>Selectively disable base styling (done!)</li>
	<li>Full HTML5 support (in progress)</li>
	<li>Easier to customize options screen (in progress)</li>
</ul>
The above are just the major items, there are many more changes completed and upcoming! Bowe and I have collectively invested hundreds of hours into Infinity since beta 2, and we are very excited to be getting ever closer to a stable release.

In response to the community wanting more access to development as-it-happens, and an easier way to provide feedback and contributions, we have decided to move our entire code repository to GitHub!
<ul>
	<li>Infinity - <a href="https://github.com/MrMaz/infinity">https://github.com/PressCrew/infinity</a></li>
	<li>Infinity Skeleton - <a href="https://github.com/MrMaz/infinity-skeleton">https://github.com/PressCrew/infinity-skeleton</a></li>
</ul>
We strongly encourage you to <em>watch </em>both repositories to stay up to date on the latest developments with the Infinity code base.

If you would like to contribute a bug fix or enhancement, we are definitely interested in pull requests, although you are encouraged to open an issue first to discuss your ideas with us before investing a lot of time.

And with this move to GitHub we are officially ending the private beta program! <strong>The entire community is now open to anyone who might wander in, although an account is still required to post on the forums.</strong>

Thank you so much to everyone who has contributed their valuable time, energy, and money into the project up to this point. A very <strong>special thanks</strong> goes out to these individuals:
<ul>
	<li>Leo Farias and the Concept Web Solutions team who have donated thousands of dollars over several months.</li>
	<li>Ross Grant for donating custom code back to the project, and providing valuable feedback.</li>
	<li>Shawn Gaffney for his tireless testing and numerous valuable suggestions and ideas.</li>
	<li>Tammie Lister for her amazing help with making the design 100% responsive.</li>
	<li>Sarah Gooding and Siobhan McKeown for helping spread the word with some killer articles.</li>
	<li>Andrea Rennick for letting Bowe harass her with questions about multi-site <img src='http://community.presscrew.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
</ul><p>The post <a href="http://community.presscrew.com/updates/infinity-is-on-github/">Infinity is on GitHub</a> appeared first on <a href="http://community.presscrew.com">PressCrew Community</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://community.presscrew.com/updates/infinity-is-on-github/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Coming Soon</title>
		<link>http://community.presscrew.com/updates/coming-soon/</link>
		<comments>http://community.presscrew.com/updates/coming-soon/#comments</comments>
		<pubDate>Sun, 04 Dec 2011 12:52:43 +0000</pubDate>
		<dc:creator>bowe</dc:creator>
				<category><![CDATA[updates]]></category>
		<category><![CDATA[launch]]></category>
		<category><![CDATA[teaser]]></category>

		<guid isPermaLink="false">http://community.presscrew.com/?p=742</guid>
		<description><![CDATA[<p>Some big changes are coming up for Infinity, and we&#8217;ve been working extremely hard behind the scenes to get everything ready. Here&#8217;s a quick teaser. Exited yet?</p><p>The post <a href="http://community.presscrew.com/updates/coming-soon/">Coming Soon</a> appeared first on <a href="http://community.presscrew.com">PressCrew Community</a>.</p>]]></description>
				<content:encoded><![CDATA[Some big changes are coming up for Infinity, and we&#8217;ve been working extremely hard behind the scenes to get everything ready. Here&#8217;s a quick teaser.

<a href="http://community.presscrew.com/files/2011/12/coming-soon.jpg"><img src="http://community.presscrew.com/files/2011/12/coming-soon-680x680.jpg" alt="" title="coming-soon" width="680" height="680" class="alignnone size-large wp-image-743" /></a>

Exited yet? <p>The post <a href="http://community.presscrew.com/updates/coming-soon/">Coming Soon</a> appeared first on <a href="http://community.presscrew.com">PressCrew Community</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://community.presscrew.com/updates/coming-soon/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Infinity Beta v2 is out now.</title>
		<link>http://community.presscrew.com/updates/infinity-beta-v2-is-out-now/</link>
		<comments>http://community.presscrew.com/updates/infinity-beta-v2-is-out-now/#comments</comments>
		<pubDate>Thu, 13 Oct 2011 12:49:13 +0000</pubDate>
		<dc:creator>bowe</dc:creator>
				<category><![CDATA[updates]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[easy hooks]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[infinity]]></category>
		<category><![CDATA[release]]></category>
		<category><![CDATA[responsive]]></category>
		<category><![CDATA[theme]]></category>

		<guid isPermaLink="false">http://community.presscrew.com/?p=305</guid>
		<description><![CDATA[<p>We&#8217;re very exited to announce that the second beta release of Infinity is now ready for download! This is quite a huge release which not has a number of bugs squashed, it also contains a lot of new functionality that we would like you to check out. Download Infinity Version 1.0 Beta 2 Now! not<a class="moretag" href="http://community.presscrew.com/updates/infinity-beta-v2-is-out-now/">&#8594;</a></p><p>The post <a href="http://community.presscrew.com/updates/infinity-beta-v2-is-out-now/">Infinity Beta v2 is out now.</a> appeared first on <a href="http://community.presscrew.com">PressCrew Community</a>.</p>]]></description>
				<content:encoded><![CDATA[We&#8217;re very exited to announce that the second beta release of Infinity is now ready for download! This is quite a huge release which not has a number of bugs squashed, it also contains a <strong>lot</strong> of new functionality that we would like you to check out.

<a class="button green" href="http://community.presscrew.com/discussions/topic/infinity-1-0b2-is-available/">Download Infinity Version 1.0 Beta 2 Now!</a>
<a title="Join the Infinity Beta" href="http://community.presscrew.com/join-beta/">not a Private Beta member yet? Read This</a>

As we touched upon in our <a title="What's coming up for Infinity V2" href="http://community.presscrew.com/updates/infinity-beta-v2-community-building-and-how-things-got-a-little-crazy/" target="_blank">first development blogpost</a> we&#8217;re aware that some of you might be not be completely sure of what Infinity can mean for your site or business. <strong>We feel that this release gives you a much better impression of how you can utilize Infinity for your projects by simple looking at the Showcase Theme bundled with the Infinity download package.</strong>

Before we go into that, let&#8217;s take a look at what&#8217;s changed in this release. Click on the toggle below to view a list of all the changes that were made over the past two weeks to Infinity and the Infinity Base theme.

[toggle title="View the full Infinity beta v2 changelog" color="white"]
<pre>## Infinity Change Log

### 1.0b2 (Oct 10th, 2011)
---------------------------
* turn design styles on by default
* adding public GPG key used to sign tags
* bp features to own folder, added activity intro feature
* updated feature docs with new bp activity intro type
* buddypress features silently fail to load if bp is not active
* added export variables functionality
* added ability to have multiple hidden values for storing arrays
* new pie easy slider jquery plugin, woot
* added new ui/slider option type
* added options examples ini file, work in progress
* Updated BuddyPress Docs and added image border and margins for doc images
* Remove depreciated BP navigation CSS and cleaned up BP CSS
* fixed default slider widget margins
* added new left/center/right position option type
* added left/center/right position support to header logo
* fixed colorpicker launcher element bg color issue
* add method for checking if suboption is registered
* refactored and reorganized css option types, new css block feature and css repeat option types
* added error and exception handler
* Remove Min-Width in CSS and made a small change to header.php both to make responsive layout possible
* exports refresh must run before init enqueueing since there is a file exists check
* added refresh method which calls clearstatcache and updates stat info
* force refresh before and after writing export files
* cleaned up some variable naming and code formatting
* many windows install fixes, corrected exports caching toggle
* added create new link to post-list widget header
* Added hooks for the menu navigation and added a missing "after single content" hook.
* big time navigation improvements
* Added special search loop template displaying the excerpts instead of full length posts.
* Removed some unneeded .post css prefixes.
* fixed php 5.2.x issues
* total re-write of setup guide

### 1.0b1 (Sep 30th, 2011)
---------------------------
* Initial release</pre>
[/toggle]

As you can see we fixed numerous smaller issues, updated the <a title="Installation Guide" href="http://infinity.presscrew.com/docs/?page=infinity-theme&amp;route=cpanel/ddocs/install_setup">installation</a> and <a title="BuddyPress Installation" href="http://community.presscrew.com/discussions/topic/i18n-translation-to-infinity/">buddypress setup</a> guides and generally made Infinity more awesome!
<h3>Awesome new Developer Features</h3>
Below are two new developer features we like to highlight in this release.
<ul class="checkbox">
<ul class="checkbox">
	<li>Advanced Error Reporting <span class="description"><span class="description">Made a mistake somewhere? We&#8217;ve added a powerful debugger tool to Infinity to help you debug your code. It helps you track issues not only in Infinity but across your WordPress installation as soon as you activate Infinity.
[toggle title="How to start using it" color="white"]
Add the code below to your functions.php in your child theme and uncomment the stuff you want to use:</span></span>
<pre>/**
 * Set this to true to put Infinity into developer mode
 */
//define( 'INFINITY_DEV_MODE', true );

//
// Usually dev mode is enough, but if want finer control you can
// set some of these special constants manually.
//

/**
 * Set this to false to totally disable error handling by Infinity
 */
//define( 'INFINITY_ERROR_HANDLING', false );

/**
 * Set this to true to show detailed error and exception reports. This only
 * works if error handling is enabled (see above)
 */
//define( 'INFINITY_ERROR_REPORTING', true );

/**
 * Set this to a short message to customize the friendly AJAX error
 */
//define( 'PIE_EASY_ERROR_AJAX_MESSAGE', 'Woops! We forgot to feed the server, sorry!' );

/**
 * Set this to an absolute path to a custom friendly fatal error page
 */
//define( 'PIE_EASY_ERROR_PAGE_PATH', '/path/to/my/error.php' );

/**
 * Set this to false to disable caching of dynamically generated
 * CSS and Javascript. Highly recommended for development.
 */
//define( 'PIE_EASY_CACHE_EXPORTS', false );</pre>
[/toggle]</li>
	<li>Added new &#8220;Slider&#8221; option type <span class="description"><span class="description">Add a jQuery UI Slider option to your Theme Options easily
[toggle title="Show usage example" color="white"]
Add this to your options.ini file in your Infinity Child Theme</span></span>
<pre>[infinity_base_slider_time]
section = "slider"
title = "Slider Configuration"
description = "The amount of time in seconds each slide shows"
type = "ui/slider"
min = 1
max = 10
step = 1
label = "Time in seconds:"
default_value = 5</pre>
[/toggle]</li>
</ul>
</ul>
<a href="http://community.presscrew.com/files/2011/10/infinity-slider-option.png"><img class="alignnone size-large wp-image-402" title="infinity-slider-option" src="http://community.presscrew.com/files/2011/10/infinity-slider-option-680x217.png" alt="" width="680" height="217" /></a>
<h2>Try out upcoming Features for Infinity</h2>
Besides the developer features we have a huge amount of new features that you can check out if you&#8217;re interested in building a awesome community with our Base Theme. These upcoming features are available in the new Showcase Theme included with your download.
<ul class="checkbox">
	<li>New Feature: Full responsive Design <span class="description">The Base theme is now completely responsive which means it looks great across all (mobile) devices. This includes BuddyPress pages! If you are using the Infinity Base theme as your parent theme in your multisite network all your blogs will be responsive as well.. meaning; Mobile friendly themes across your Network! Big shout out to <a title="Tammie Lister" href="http://twitter.com/#!/karmatosed">Tammie Lister aka Karmatosed</a> who helped us achieve this. </span></li>
</ul>
<a href="http://community.presscrew.com/files/2011/10/responsive.jpg"><img class="alignnone size-large wp-image-318" title="responsive" src="http://community.presscrew.com/files/2011/10/responsive-680x283.jpg" alt="" width="680" height="283" /></a>
<ul class="checkbox">
	<li>New Feature: Homepage Featured Slider <span class="description">Add a awesome looking Slider to your homepage displaying posts from a certain category or with the Slides custom post type.</span></li>
</ul>
<a href="http://community.presscrew.com/files/2011/10/slider.jpg"><img class="alignnone size-large wp-image-322" title="slider" src="http://community.presscrew.com/files/2011/10/slider-680x265.jpg" alt="" width="680" height="265" /></a>
<ul class="checkbox">
	<li>New Feature: Easy Hooks <span class="description"><span class="description">Add custom content anywhere in your theme easily! Simply visit your Infinity Dashboard and go the Options Page to see all the available hooks!
[toggle title="Easy Hooks Example: Inserting Social Share buttons on Single Posts" color="white"]
Let&#8217;s say you want to insert the <a href="http://addthis.com">AddThis Sharing Buttons</a>to your Theme.. That is now super easy! Visit your options page, go to the Easy Hooks options and select &#8220;Single Posts&#8221;. Then simply insert the AddThis HTML in the &#8220;Before Single Post Content&#8221; option:</span></span><a href="http://community.presscrew.com/files/2011/10/Screen-Shot-2011-10-13-at-4.10.44-PM.png"><img class="alignnone size-large wp-image-423" title="Screen Shot 2011-10-13 at 4.10.44 PM" src="http://community.presscrew.com/files/2011/10/Screen-Shot-2011-10-13-at-4.10.44-PM-680x359.png" alt="" width="680" height="359" /></a>That&#8217;s all there is to it! Social sharing added to your theme!
<a href="http://community.presscrew.com/files/2011/10/Screen-Shot-2011-10-13-at-4.03.16-PM.png"><img class="alignnone size-large wp-image-417" title="Screen Shot 2011-10-13 at 4.03.16 PM" src="http://community.presscrew.com/files/2011/10/Screen-Shot-2011-10-13-at-4.03.16-PM-680x265.png" alt="" width="680" height="265" /></a>
[/toggle]</li>
</ul>
<a href="http://community.presscrew.com/files/2011/10/easy-hooks.jpg"><img class="alignnone size-large wp-image-323" title="easy-hooks" src="http://community.presscrew.com/files/2011/10/easy-hooks-680x265.jpg" alt="" width="680" height="265" /></a>
<ul class="checkbox">
<ul class="checkbox">
	<li>New Feature: Breadcrumb Navigation <span class="description">If you are using Yoast his WordPress SEO plugin and have Breadcrumbs enabled they will show up automatically in your theme</span></li>
</ul>
</ul>
<a href="http://community.presscrew.com/files/2011/10/Screen-Shot-2011-10-13-at-3.52.44-PM.png"><img class="alignnone size-large wp-image-416" title="Screen Shot 2011-10-13 at 3.52.44 PM" src="http://community.presscrew.com/files/2011/10/Screen-Shot-2011-10-13-at-3.52.44-PM-680x175.png" alt="" width="680" height="175" /></a>
<h3>So what&#8217;s next?</h3>
So now that we&#8217;ve shown you all these new features, is there something that you would really like to see in the next release of Infinity? We have read a few suggestions on the forums already, but this is your time to speak up! Feel free to leave your ideas and thank you notes (!!) in the comments!

PS: We&#8217;ve been very busy getting the new release out and <strong>It would be awesome if you could share this post with your Buddies on Twitter or Facebook using the share buttons below! Also don&#8217;t forget you can invite up to 10 friends directly to check out the beta: <a title="Invite your Friends" href="http://community.presscrew.com/send-invites/">Invite Some Friends</a>!</strong><p>The post <a href="http://community.presscrew.com/updates/infinity-beta-v2-is-out-now/">Infinity Beta v2 is out now.</a> appeared first on <a href="http://community.presscrew.com">PressCrew Community</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://community.presscrew.com/updates/infinity-beta-v2-is-out-now/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
