<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for AceGoulet.com</title>
	<atom:link href="http://www.acegoulet.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.acegoulet.com</link>
	<description>Portfolio website and blog for Adrien Goulet. Web designer/developer, photographer, graphic designer and stand-up dude.</description>
	<lastBuildDate>Wed, 09 May 2012 02:13:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>Comment on Champions of Comedy by Edith Levin</title>
		<link>http://www.acegoulet.com/2011/08/champions-of-comedy/#comment-742</link>
		<dc:creator>Edith Levin</dc:creator>
		<pubDate>Wed, 09 May 2012 02:13:00 +0000</pubDate>
		<guid isPermaLink="false">http://acegoulet.com/?p=372#comment-742</guid>
		<description>Do you know him personally?</description>
		<content:encoded><![CDATA[<p>Do you know him personally?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Champions of Comedy by acegoulet</title>
		<link>http://www.acegoulet.com/2011/08/champions-of-comedy/#comment-741</link>
		<dc:creator>acegoulet</dc:creator>
		<pubDate>Wed, 09 May 2012 02:09:00 +0000</pubDate>
		<guid isPermaLink="false">http://acegoulet.com/?p=372#comment-741</guid>
		<description>I agree, very funny dude!</description>
		<content:encoded><![CDATA[<p>I agree, very funny dude!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Champions of Comedy by EdyLevin</title>
		<link>http://www.acegoulet.com/2011/08/champions-of-comedy/#comment-740</link>
		<dc:creator>EdyLevin</dc:creator>
		<pubDate>Wed, 09 May 2012 02:09:00 +0000</pubDate>
		<guid isPermaLink="false">http://acegoulet.com/?p=372#comment-740</guid>
		<description>Oh man. I love Judah!</description>
		<content:encoded><![CDATA[<p>Oh man. I love Judah!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Isotope and WordPress: How I Did It by acegoulet</title>
		<link>http://www.acegoulet.com/2012/03/isotope-and-wordpress-how-i-did-it/#comment-739</link>
		<dc:creator>acegoulet</dc:creator>
		<pubDate>Wed, 09 May 2012 00:46:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.acegoulet.com/?p=931#comment-739</guid>
		<description>I think I see the problem. You are missing the rest of the php necessary for generating your posts on the page. The part I provided just shows how to pull the slug info for each generated post. (This is assuming the code didn&#039;t just get cut off in your comment, which it very well may have).

Here&#039;s a bit more of the complete code for generating the posts on the page (I apologize if the formatting is wierd...hard to post code in comments). I&#039;ve added in some commented out notes to help you out:

[code]
&lt;!-- This first php chunk defines the variables for the array of posts. In this case, I am telling it to pull 100 posts, randomize the display order and only pull from category 82, which is the parent category (portfolio) for all the child categories that I am including in this page. You&#039;ll want to change those variables to whatever applies to your site --&gt;&lt;?php global $post; $count=&#039;&#039;;$args = array( &#039;numberposts&#039; =&gt; 100, &#039;orderby&#039; =&gt; &#039;rand&#039;,  &#039;category&#039; =&gt; 82 );					$myposts = get_posts( $args );					foreach( $myposts as $post ) :	setup_postdata($post); 					if (is_category()) {$yourcat = get_category ($cat); }              ?&gt;                                                                                       &lt;!-- Post Starts - This area sets up the display for the posts. In my case, I display the featured image for the post, wrapped in a link that will trigger fancybox. For your test, I have stripped this down to just the post title, linked to the post permalink, just so you can get it working before trying to add in other elements.  --&gt;                                         &lt;div class=&quot;port port-file &lt;?php $post_cats = get_the_category(); foreach( $post_cats as $category ) { echo $category-&gt;slug.&#039; &#039;;} ?&gt;&quot; data-category=&quot;portfolio&quot;&gt;								&lt;a href=&quot;&lt;?php the_permalink(); ?&gt;&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;						&lt;/div&gt;				                			                           &lt;!-- /.post --&gt;            &lt;?php $count++; endforeach; ?&gt;
[/code]

Hope that helps. If you are still having trouble, shoot me another comment or you can send me an email via the contact form on the site (click the contact button up top in the main navigation).</description>
		<content:encoded><![CDATA[<p>I think I see the problem. You are missing the rest of the php necessary for generating your posts on the page. The part I provided just shows how to pull the slug info for each generated post. (This is assuming the code didn&#8217;t just get cut off in your comment, which it very well may have).</p>
<p>Here&#8217;s a bit more of the complete code for generating the posts on the page (I apologize if the formatting is wierd&#8230;hard to post code in comments). I&#8217;ve added in some commented out notes to help you out:</p>
<p>[code]<br />
&lt;!-- This first php chunk defines the variables for the array of posts. In this case, I am telling it to pull 100 posts, randomize the display order and only pull from category 82, which is the parent category (portfolio) for all the child categories that I am including in this page. You'll want to change those variables to whatever applies to your site --&gt;&lt;?php global $post; $count='';$args = array( 'numberposts' =&gt; 100, 'orderby' =&gt; 'rand',  'category' =&gt; 82 );					$myposts = get_posts( $args );					foreach( $myposts as $post ) :	setup_postdata($post); 					if (is_category()) {$yourcat = get_category ($cat); }              ?&gt;                                                                                       &lt;!-- Post Starts - This area sets up the display for the posts. In my case, I display the featured image for the post, wrapped in a link that will trigger fancybox. For your test, I have stripped this down to just the post title, linked to the post permalink, just so you can get it working before trying to add in other elements.  --&gt;                                         &lt;div class=&quot;port port-file &lt;?php $post_cats = get_the_category(); foreach( $post_cats as $category ) { echo $category-&gt;slug.' ';} ?&gt;&quot; data-category=&quot;portfolio&quot;&gt;								&lt;a href=&quot;&lt;?php the_permalink(); ?&gt;&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;						&lt;/div&gt;				                			                           &lt;!-- /.post --&gt;            &lt;?php $count++; endforeach; ?&gt;<br />
[/code]</p>
<p>Hope that helps. If you are still having trouble, shoot me another comment or you can send me an email via the contact form on the site (click the contact button up top in the main navigation).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Isotope and WordPress: How I Did It by Christopher Westendorf</title>
		<link>http://www.acegoulet.com/2012/03/isotope-and-wordpress-how-i-did-it/#comment-738</link>
		<dc:creator>Christopher Westendorf</dc:creator>
		<pubDate>Tue, 08 May 2012 22:03:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.acegoulet.com/?p=931#comment-738</guid>
		<description>I have been struggling all day to figure out why the isotopes are not rendering on my site. http://new.coolgrayseven.com
page [code]
		
			

&lt;div class=&quot;port port-file slug.&#039; &#039;;} ?&gt;&quot; data-category=&quot;portfolio&quot;&gt;
	&lt;a class=&quot;portfolio-img port-item-link showall slug.&#039; &#039;;} ?&gt;&quot; rel=&quot;portfolio&quot; title=&quot;&quot; id=&quot;ID, &#039;trigger_id&#039;, true); ?&gt;&quot; href=&quot;ID, &#039;port_lg&#039;, true); ?&gt;&quot;&gt;
	&lt;/a&gt;


			&lt;!-- #content --&gt;
		&lt;!-- #primary .site-content --&gt;
[/code]

header [code]

&lt;script type=&#039;text/javascript&#039; src=&#039;/js/jquery.isotope.min.js&#039;&gt;

jQuery(document).ready(function () {
 
	//Set your isotope area
	var jQuerycontainer = jQuery(&#039;#main&#039;),
	filters = {};
 
	//Set our items to be filtered, .post will work if you&#039;re using the post_class(); function
	jQuerycontainer.isotope({
		itemSelector : &#039;.post&#039;
	});
 
	//Set the buttons to filter the content
	jQuery(&#039;.filters a&#039;).click(function(){
		var jQuerythis = jQuery(this);
		// don&#039;t proceed if already selected
		if ( jQuerythis.hasClass(&#039;selected&#039;) ) {
		return;
	}
 
	var jQueryoptionSet = jQuerythis.parents(&#039;.option-set&#039;);
	//change selected class
	jQueryoptionSet.find(&#039;.selected&#039;).removeClass(&#039;selected&#039;);
	jQuerythis.addClass(&#039;selected&#039;);
 
	//store filter value in object
	//i.e. filters.color = &#039;red&#039;
	var group = jQueryoptionSet.attr(&#039;data-filter-group&#039;);
	filters[ group ] = jQuerythis.attr(&#039;data-filter-value&#039;);
 
	//convert object into array
	var isoFilters = [];
	for ( var prop in filters ) {
	isoFilters.push( filters[ prop ] )
	}
	var selector = isoFilters.join(&#039;&#039;);
	jQuerycontainer.isotope({ filter: selector });
 
	return false;
	});
 	var filters = jQuery(&#039;#filters&#039;);
 	
 	jQuery(filters).find(&#039;a&#039;).click(function(){
 	    jQuery(filters).find(&#039;.selected&#039;).removeClass(&#039;selected&#039;);
 	    jQuery(this).addClass(&#039;selected&#039;);
 	});​
});

[/code]

I think I am missing something in get_the_category ... Any help would be appreciated.</description>
		<content:encoded><![CDATA[<p>I have been struggling all day to figure out why the isotopes are not rendering on my site. <a href="http://new.coolgrayseven.com" rel="nofollow">http://new.coolgrayseven.com</a><br />
page [code]</p>
<p>&lt;div class=&quot;port port-file slug.' ';} ?&gt;" data-category="portfolio"&gt;<br />
	&lt;a class=&quot;portfolio-img port-item-link showall slug.' ';} ?&gt;" rel="portfolio" title="" id="ID, 'trigger_id', true); ?&gt;" href="ID, 'port_lg', true); ?&gt;"&gt;</p>
<p>			<!-- #content --><br />
		<!-- #primary .site-content --><br />
[/code]</p>
<p>header [code]</p>
<p>&lt;script type=&#039;text/javascript&#039; src=&#039;/js/jquery.isotope.min.js'&gt;</p>
<p>jQuery(document).ready(function () {<br />
 <br />
	//Set your isotope area<br />
	var jQuerycontainer = jQuery('#main'),<br />
	filters = {};<br />
 <br />
	//Set our items to be filtered, .post will work if you're using the post_class(); function<br />
	jQuerycontainer.isotope({<br />
		itemSelector : '.post'<br />
	});<br />
 <br />
	//Set the buttons to filter the content<br />
	jQuery('.filters a').click(function(){<br />
		var jQuerythis = jQuery(this);<br />
		// don't proceed if already selected<br />
		if ( jQuerythis.hasClass('selected') ) {<br />
		return;<br />
	}<br />
 <br />
	var jQueryoptionSet = jQuerythis.parents('.option-set');<br />
	//change selected class<br />
	jQueryoptionSet.find('.selected').removeClass('selected');<br />
	jQuerythis.addClass('selected');<br />
 <br />
	//store filter value in object<br />
	//i.e. filters.color = 'red'<br />
	var group = jQueryoptionSet.attr('data-filter-group');<br />
	filters[ group ] = jQuerythis.attr('data-filter-value');<br />
 <br />
	//convert object into array<br />
	var isoFilters = [];<br />
	for ( var prop in filters ) {<br />
	isoFilters.push( filters[ prop ] )<br />
	}<br />
	var selector = isoFilters.join('');<br />
	jQuerycontainer.isotope({ filter: selector });<br />
 <br />
	return false;<br />
	});<br />
 	var filters = jQuery('#filters');<br />
 <br />
 	jQuery(filters).find('a').click(function(){<br />
 	    jQuery(filters).find('.selected').removeClass('selected');<br />
 	    jQuery(this).addClass('selected');<br />
 	});​<br />
});</p>
<p>[/code]</p>
<p>I think I am missing something in get_the_category &#8230; Any help would be appreciated.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Isotope and WordPress: How I Did It by acegoulet</title>
		<link>http://www.acegoulet.com/2012/03/isotope-and-wordpress-how-i-did-it/#comment-737</link>
		<dc:creator>acegoulet</dc:creator>
		<pubDate>Thu, 03 May 2012 11:56:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.acegoulet.com/?p=931#comment-737</guid>
		<description>Hi @623cf2e5ca12960ebd10b5d7aa333605:disqus -
I had a similar issue when I was implementing and it turned out that one of my plugins was calling jquery in my header, after I had already called jquery and isotope. I simply moved my jquery and isotope calls after the wp_head(); tag and it fixed the problem. Try disabling all your plugins and seeing if that helps any - that&#039;s always my first step with wordpress since you never know what kinds of side effects they may end up having. Which is why I try to use as few plugins as possible.

If that doesn&#039;t work, post a link to your dev site (if it&#039;s live) and I&#039;ll see if there are any obvious reasons why it wouldn&#039;t be working.

Hope this helps!</description>
		<content:encoded><![CDATA[<p>Hi @623cf2e5ca12960ebd10b5d7aa333605:disqus -<br />
I had a similar issue when I was implementing and it turned out that one of my plugins was calling jquery in my header, after I had already called jquery and isotope. I simply moved my jquery and isotope calls after the wp_head(); tag and it fixed the problem. Try disabling all your plugins and seeing if that helps any &#8211; that&#8217;s always my first step with wordpress since you never know what kinds of side effects they may end up having. Which is why I try to use as few plugins as possible.</p>
<p>If that doesn&#8217;t work, post a link to your dev site (if it&#8217;s live) and I&#8217;ll see if there are any obvious reasons why it wouldn&#8217;t be working.</p>
<p>Hope this helps!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Isotope and WordPress: How I Did It by Giamitus</title>
		<link>http://www.acegoulet.com/2012/03/isotope-and-wordpress-how-i-did-it/#comment-736</link>
		<dc:creator>Giamitus</dc:creator>
		<pubDate>Thu, 03 May 2012 11:26:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.acegoulet.com/?p=931#comment-736</guid>
		<description>Hi, 

i just saw your post, and this is really helpful.. but i can&#039;t still get isotope work on my WP website. 
I got the category call, with all children, the filter works, it does filtering, BUT there&#039;s no isotope effects. I mean when i grad the window nothing moving, and when i use the filter nothing moving too. 
That makes sense? :) 

i did add link to jquery and isotope.js.. and add the script into the footer too.. 
any tips? 

Thank you </description>
		<content:encoded><![CDATA[<p>Hi, </p>
<p>i just saw your post, and this is really helpful.. but i can&#8217;t still get isotope work on my WP website.<br />
I got the category call, with all children, the filter works, it does filtering, BUT there&#8217;s no isotope effects. I mean when i grad the window nothing moving, and when i use the filter nothing moving too.<br />
That makes sense? <img src='http://www.acegoulet.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </p>
<p>i did add link to jquery and isotope.js.. and add the script into the footer too..<br />
any tips? </p>
<p>Thank you </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Isotope and WordPress: How I Did It by acegoulet</title>
		<link>http://www.acegoulet.com/2012/03/isotope-and-wordpress-how-i-did-it/#comment-735</link>
		<dc:creator>acegoulet</dc:creator>
		<pubDate>Wed, 02 May 2012 13:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.acegoulet.com/?p=931#comment-735</guid>
		<description>Hi Dustin, thanks for the question! I used the latest version of Fancybox ( http://fancyapps.com/fancybox/ ), which is also very nicely responsive in addition to having a lot of configuration options. As far as I can tell though, most lightbox/shadowbox/fancybox/whateverthehellbox libraries should work with isotope. Without seeing your site or any code, it&#039;s hard to nail down what the issue might be, but maybe there is something off in the way your are calling the lightbox scripts in your &lt;a&gt; tags?</description>
		<content:encoded><![CDATA[<p>Hi Dustin, thanks for the question! I used the latest version of Fancybox ( <a href="http://fancyapps.com/fancybox/" rel="nofollow">http://fancyapps.com/fancybox/</a> ), which is also very nicely responsive in addition to having a lot of configuration options. As far as I can tell though, most lightbox/shadowbox/fancybox/whateverthehellbox libraries should work with isotope. Without seeing your site or any code, it&#8217;s hard to nail down what the issue might be, but maybe there is something off in the way your are calling the lightbox scripts in your <a> tags?</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

