<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<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">
	<channel>
		<title>whoismanu.com - Forum &#187; Tag: description - Recent Posts</title>
		<link>http://www.whoismanu.com/forum/tags/description</link>
		<description>Just another bbPress community</description>
		<language>en-US</language>
		<pubDate>Thu, 09 Feb 2012 13:20:38 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.whoismanu.com/forum/search.php</link>
		</textInput>
		<atom:link href="http://www.whoismanu.com/forum/rss/tags/description" rel="self" type="application/rss+xml" />

		<item>
			<title>michaelserisier on "Modifying IQ2"</title>
			<link>http://www.whoismanu.com/forum/topic/modifying-iq2#post-1296</link>
			<pubDate>Sun, 20 Feb 2011 17:18:51 +0000</pubDate>
			<dc:creator>michaelserisier</dc:creator>
			<guid isPermaLink="false">1296@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;@azie, whoismanu's suggestion to add this line in iq2/classes/IQ2Theme.php fixes the problem:&#60;br /&#62;
add_filter('the_content_feed', array(&#38;amp;$this, 'addDescrToFeed'));&#60;/p&#62;
&#60;p&#62;I've added it right after the &#34;//add description to feeds&#34; comment.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>azie on "Modifying IQ2"</title>
			<link>http://www.whoismanu.com/forum/topic/modifying-iq2#post-1289</link>
			<pubDate>Fri, 28 Jan 2011 18:40:52 +0000</pubDate>
			<dc:creator>azie</dc:creator>
			<guid isPermaLink="false">1289@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;Hello dawilson!&#60;/p&#62;
&#60;p&#62;Could you please clarify as to what fixed your problem?  I'm having the same issue as well.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dawilson on "Modifying IQ2"</title>
			<link>http://www.whoismanu.com/forum/topic/modifying-iq2#post-1270</link>
			<pubDate>Wed, 29 Dec 2010 15:47:14 +0000</pubDate>
			<dc:creator>dawilson</dc:creator>
			<guid isPermaLink="false">1270@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;Checking the feed this morning, I see that something I did on Sunday did, finally, correct the problem and I now have both the large image and the description in the &#38;lt;content:encoded&#38;gt; section of each RSS feed item. Thanks for your previous help and apologies for the false alarm this time round (though you may like to see if the change I made needs to be included in future IQ2 releases, I suppose).
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dawilson on "Modifying IQ2"</title>
			<link>http://www.whoismanu.com/forum/topic/modifying-iq2#post-1269</link>
			<pubDate>Mon, 27 Dec 2010 02:13:31 +0000</pubDate>
			<dc:creator>dawilson</dc:creator>
			<guid isPermaLink="false">1269@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;It's time for my annual &#34;Try to fix my RSS feed&#34; day again. I've just updated everything to the latest version (Wordpress 3.0.3, PhotoQ 1.9, IQ2 1.3) hoping that my previous problem would go away but, unfortunately, my post description is still not included in the &#38;lt;content:encoded&#38;gt; section of each post's RSS item. Delving through the PHP for WordPress itself, I have absolutely no idea why this should be. I've made some changes to the IQ2Theme.php file for debug as follows:&#60;/p&#62;
&#60;p&#62;	`//add description to feeds&#60;br /&#62;
	add_filter('the_content_feed', array(&#38;amp;$this, 'addDescrToFeed'));&#60;br /&#62;
	add_filter('the_excerpt_rss', array(&#38;amp;$this, 'addDescrToFeedExcerpt'));`&#60;/p&#62;
&#60;p&#62;  The first add_filter used &#34;the_content_rss&#34; initially but I gather this is now deprecated in favour of &#34;the_content_feed&#34;. Even after changing this, I see no difference (though, frankly, I'm not convinced that FeedBurner's refresh is working properly so I'll check again in an hour or so). I also doubled up the addDescToFeed function so that I can tell exactly which hook is being called:&#60;/p&#62;
&#60;p&#62;	`/**&#60;br /&#62;
	 * Filter hook to add the description to the RSS feeds&#60;br /&#62;
	 * @param $content&#60;br /&#62;
	 * @return unknown_type&#60;br /&#62;
	 */&#60;br /&#62;
	function addDescrToFeed($content){&#60;br /&#62;
		global $post;&#60;br /&#62;
		/* if($this-&#38;gt;_oc-&#38;gt;getValue('feedShowDescr')){ */&#60;br /&#62;
			$content .= &#34;&#38;lt;!-- addDescrToFeed --&#38;gt;&#34;;&#60;br /&#62;
			$content .= get_post_meta($post-&#38;gt;ID, 'photoQDescr', true);&#60;br /&#62;
		/* } */&#60;br /&#62;
    	return $content;&#60;br /&#62;
	}&#60;br /&#62;
	function addDescrToFeedExcerpt($content){&#60;br /&#62;
		global $post;&#60;br /&#62;
		if($this-&#38;gt;_oc-&#38;gt;getValue('feedShowDescr')){&#60;br /&#62;
			$content .= &#34;&#38;lt;!-- addDescrToFeedExcerpt --&#38;gt;&#34;;&#60;br /&#62;
			$content .= get_post_meta($post-&#38;gt;ID, 'photoQDescr', true);&#60;br /&#62;
		}&#60;br /&#62;
    	return $content;&#60;br /&#62;
	}`&#60;/p&#62;
&#60;p&#62;Looking at the XML generated for my feed, I see that the addDescrToFeedExcerpt filter was called to fill in the &#38;lt;description&#38;gt; block but that the addDescToFeed filter was never called when &#38;lt;content:encoded&#38;gt; was set up. The code in WordPress's feed.php which I presume is called to generate this block (isn't &#34;grep&#34; a wonderful debugging tool?) calls:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;return apply_filters(&#38;#39;the_content_feed&#38;#39;, $content, $feed_type);&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;so I can't see why our filter isn't being used. Any ideas?&#60;/p&#62;
&#60;p&#62;Any help you can offer on this would be excellent since this is really driving me mad. How difficult can it be to get the description text to appear underneath the full resolution photo in the RSS feed?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Fire on "Grace Theme with PhotoQ"</title>
			<link>http://www.whoismanu.com/forum/topic/grace-theme-with-photoq#post-1243</link>
			<pubDate>Sat, 20 Nov 2010 17:25:52 +0000</pubDate>
			<dc:creator>Fire</dc:creator>
			<guid isPermaLink="false">1243@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;Hi, I am using the Grace theme, could anyone help me on how to display the the thumbnail photo's title and description for each of the thumbnail on the page?&#60;/p&#62;
&#60;p&#62;Thanks&#60;br /&#62;
Fire
&#60;/p&#62;</description>
		</item>
		<item>
			<title>timrybak on "Grace Theme with PhotoQ"</title>
			<link>http://www.whoismanu.com/forum/topic/grace-theme-with-photoq#post-1141</link>
			<pubDate>Fri, 08 Oct 2010 16:06:49 +0000</pubDate>
			<dc:creator>timrybak</dc:creator>
			<guid isPermaLink="false">1141@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;I was able to get the thumbnails to load.  I had to edit the hpautothumbson.php file and change &#60;/p&#62;
&#60;p&#62;&#38;lt;?php echo $image_value; ?&#38;gt;&#38;amp;w=280&#38;amp;h=140&#38;amp;zc=1&#34; width=&#34;280&#34; height=&#34;140&#34; /&#38;gt; &#60;/p&#62;
&#60;p&#62;to &#60;/p&#62;
&#60;p&#62;&#38;lt;?php echo trim($image_value); ?&#38;gt;&#38;amp;w=280&#38;amp;h=140&#38;amp;zc=1&#34; width=&#34;280&#34; height=&#34;140&#34; /&#38;gt;&#60;/p&#62;
&#60;p&#62;The problem that I had was that there was a space between the filename and the width and height settings.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>whoismanu on "Grace Theme with PhotoQ"</title>
			<link>http://www.whoismanu.com/forum/topic/grace-theme-with-photoq#post-920</link>
			<pubDate>Sat, 03 Jul 2010 12:41:22 +0000</pubDate>
			<dc:creator>whoismanu</dc:creator>
			<guid isPermaLink="false">920@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;giddytigress,&#60;/p&#62;
&#60;p&#62;looking at your webpage it seems to me that the alt tags are there on every image, both the thumbs and the bigger ones....
&#60;/p&#62;</description>
		</item>
		<item>
			<title>clairehutchins on "Grace Theme with PhotoQ"</title>
			<link>http://www.whoismanu.com/forum/topic/grace-theme-with-photoq#post-916</link>
			<pubDate>Thu, 01 Jul 2010 08:45:02 +0000</pubDate>
			<dc:creator>clairehutchins</dc:creator>
			<guid isPermaLink="false">916@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;Ok thanks forthe explanation.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>giddytigress on "Grace Theme with PhotoQ"</title>
			<link>http://www.whoismanu.com/forum/topic/grace-theme-with-photoq#post-915</link>
			<pubDate>Thu, 01 Jul 2010 03:34:09 +0000</pubDate>
			<dc:creator>giddytigress</dc:creator>
			<guid isPermaLink="false">915@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;Thanks Manuel.  I tried that but it still does not work. :(
&#60;/p&#62;</description>
		</item>
		<item>
			<title>whoismanu on "Grace Theme with PhotoQ"</title>
			<link>http://www.whoismanu.com/forum/topic/grace-theme-with-photoq#post-913</link>
			<pubDate>Wed, 30 Jun 2010 22:16:44 +0000</pubDate>
			<dc:creator>whoismanu</dc:creator>
			<guid isPermaLink="false">913@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;i think that what does the trick is to replace the following line in grace/includes/autothumbsoff.php&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;img src=&#38;quot;&#38;lt;?php echo $thumbnail_value; ?&#38;gt;&#38;quot; alt=&#38;quot;&#38;lt;?php the_title(&#38;#39;&#38;#39;,&#38;#39;&#38;#39;,False); ?&#38;gt; &#38;quot;/&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;with&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;img src=&#38;quot;&#38;lt;?php echo $thumbnail_value; ?&#38;gt;&#38;quot; alt=&#38;quot;&#38;lt;?php echo get_the_title( $post_id ); ?&#38;gt; &#38;quot;/&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>giddytigress on "Grace Theme with PhotoQ"</title>
			<link>http://www.whoismanu.com/forum/topic/grace-theme-with-photoq#post-899</link>
			<pubDate>Tue, 22 Jun 2010 05:22:26 +0000</pubDate>
			<dc:creator>giddytigress</dc:creator>
			<guid isPermaLink="false">899@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;Hi Stu, can you please let me know which Grace PHP file to edit to enable the ALT tag in the thumbnails?  And also, what do I need to do exactly?&#60;br /&#62;
Thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>whoismanu on "Grace Theme with PhotoQ"</title>
			<link>http://www.whoismanu.com/forum/topic/grace-theme-with-photoq#post-830</link>
			<pubDate>Mon, 26 Apr 2010 15:56:43 +0000</pubDate>
			<dc:creator>whoismanu</dc:creator>
			<guid isPermaLink="false">830@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;great, thanks for letting me know.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>stgeorge on "Grace Theme with PhotoQ"</title>
			<link>http://www.whoismanu.com/forum/topic/grace-theme-with-photoq#post-829</link>
			<pubDate>Thu, 22 Apr 2010 20:55:18 +0000</pubDate>
			<dc:creator>stgeorge</dc:creator>
			<guid isPermaLink="false">829@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;I was able to fix the alt tag issue by changing one of the Grace PHP files, so this may just be a Grace issue.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Stu
&#60;/p&#62;</description>
		</item>
		<item>
			<title>stgeorge on "Grace Theme with PhotoQ"</title>
			<link>http://www.whoismanu.com/forum/topic/grace-theme-with-photoq#post-828</link>
			<pubDate>Thu, 22 Apr 2010 18:00:56 +0000</pubDate>
			<dc:creator>stgeorge</dc:creator>
			<guid isPermaLink="false">828@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;The Grace 1.2 preset mostly works, but the alt tag is empty on the thumbnails. Other images are fine.&#60;/p&#62;
&#60;p&#62;And you are correct, auto thumb generation does need to be turned off, but if you are using PhotoQ, you don't really need that feature anyway.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Stu
&#60;/p&#62;</description>
		</item>
		<item>
			<title>whoismanu on "Grace Theme with PhotoQ"</title>
			<link>http://www.whoismanu.com/forum/topic/grace-theme-with-photoq#post-825</link>
			<pubDate>Wed, 21 Apr 2010 16:52:57 +0000</pubDate>
			<dc:creator>whoismanu</dc:creator>
			<guid isPermaLink="false">825@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;indeed, the preset bundled with photoq so far is for grace 1.1. &#60;/p&#62;
&#60;p&#62;i created a new preset that works with grace 1.2. until it is bundled with photoq, you can get it here: &#60;a href=&#34;http://www.whoismanu.com/wp-content/photoq/presets/grace-v12.xml&#34; rel=&#34;nofollow&#34;&#62;http://www.whoismanu.com/wp-content/photoq/presets/grace-v12.xml&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;here are the instructions:&#60;/p&#62;
&#60;p&#62;1. right click link and choose &#34;save link as...&#34;&#60;br /&#62;
2. put the file grace-v12.xml into the photoq-photoblog-plugin/presets/photoblog folder&#60;br /&#62;
3. turn off the auto thumb generation feature in the grace settings (it might work with, but i didn't test)&#60;br /&#62;
4. load the preset from within photoq&#60;br /&#62;
5. tell me whether it works&#60;/p&#62;
&#60;p&#62;thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>stgeorge on "Grace Theme with PhotoQ"</title>
			<link>http://www.whoismanu.com/forum/topic/grace-theme-with-photoq#post-815</link>
			<pubDate>Thu, 15 Apr 2010 20:39:15 +0000</pubDate>
			<dc:creator>stgeorge</dc:creator>
			<guid isPermaLink="false">815@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;I was able to get Grace 1.1 to work with PhotoQ, but not Grace 1.2. I believe it probably has something to do with the new automatic thumbnail resizing in Grace 1.2.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Stu
&#60;/p&#62;</description>
		</item>
		<item>
			<title>stgeorge on "Grace Theme with PhotoQ"</title>
			<link>http://www.whoismanu.com/forum/topic/grace-theme-with-photoq#post-814</link>
			<pubDate>Tue, 13 Apr 2010 21:30:22 +0000</pubDate>
			<dc:creator>stgeorge</dc:creator>
			<guid isPermaLink="false">814@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;Does anyone know how to get the thumbnails to work in the Grace theme using PhotoQ?&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Stu
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dawilson on "Modifying IQ2"</title>
			<link>http://www.whoismanu.com/forum/topic/modifying-iq2#post-774</link>
			<pubDate>Sun, 07 Feb 2010 06:14:16 +0000</pubDate>
			<dc:creator>dawilson</dc:creator>
			<guid isPermaLink="false">774@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;Thanks for the suggestion. I've made the change and turned off my FeedBurner routing plugin but am having some problems getting hold of the raw feed data. Both IE and Firefox insist on giving me the cached Feedburner version of the feed so I can't see the raw RSS data any more (FeedProxy barfs on the stream formatting that FeedBurner generates). I'll try again tomorrow and see if I can figure out how to completely disable FeedBurner again.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>whoismanu on "Modifying IQ2"</title>
			<link>http://www.whoismanu.com/forum/topic/modifying-iq2#post-765</link>
			<pubDate>Wed, 03 Feb 2010 21:40:41 +0000</pubDate>
			<dc:creator>whoismanu</dc:creator>
			<guid isPermaLink="false">765@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;think i found the culprit. does it work if you replace 'the_content_rss' with 'the_content_feed' ?&#60;/p&#62;
&#60;p&#62;i.e. &#60;code&#62;add_filter(&#38;#39;the_content_feed&#38;#39;, array(&#38;amp;$this, &#38;#39;addDescrToFeed&#38;#39;));&#60;/code&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dawilson on "Modifying IQ2"</title>
			<link>http://www.whoismanu.com/forum/topic/modifying-iq2#post-758</link>
			<pubDate>Sun, 31 Jan 2010 02:59:11 +0000</pubDate>
			<dc:creator>dawilson</dc:creator>
			<guid isPermaLink="false">758@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;I've finally had some time to go back and look into the RSS feed problem once again. To recap, I want to make sure that the description text I enter for each photo is included in the RSS feed such that the feed shown in Google Reader contains the full sized image and the description text. As things stand today, all I get is the image with no text.&#60;/p&#62;
&#60;p&#62;The problem seems to be that the description text needs to be included in the &#38;lt;content:encoded&#38;gt; section of the feed as well as in the &#38;lt;description&#38;gt; block. I've tracked down where the RSS feed is generated (wp-includes/feed-rss2.php) but this seems OK to me - the &#38;lt;content:encoded&#38;gt; section is built from the_content() if I have RSS excerpting turned off. Looking at the database, however, I see that post_content contains only the image URL (hence explaining why that's all I see in the &#38;lt;content:encoded&#38;gt; section of my RSS feed). The entry does contain class=&#34;photoQcontent photoQImg&#34; and I suspect this is somehow intended to be expanded somewhere. I can't see any reference to this class in the stylesheet, though, so I'm at a loss to figure out what it is doing. In the post_excerpt database field, I see class=&#34;photoQexcerpt photoQImg&#34; and, looking at the raw RSS feed, this appears to be expanded to include the description text somehow.&#60;/p&#62;
&#60;p&#62;Could you offer any advice on what's going on here so that I can make some more progress? Apologies if these are annoying questions - despite 30 years of professional C programming, I'm a newbie at PHP and know nothing at all about the guts of WordPress - but I assumed this would be an easy thing to do when I started looking at the problem!&#60;/p&#62;
&#60;p&#62;Thanks in advance!&#60;/p&#62;
&#60;p&#62;&#38;lt;Edit - looking through IQ2Theme.php, I see:&#60;/p&#62;
&#60;p&#62;		//add description to feeds&#60;br /&#62;
		add_filter('the_content_rss', array(&#38;amp;$this, 'addDescrToFeed'));&#60;br /&#62;
		add_filter('the_excerpt_rss', array(&#38;amp;$this, 'addDescrToFeed'));&#60;/p&#62;
&#60;p&#62;which looks to me as if you are trying to add the description text to both the excerpt and content when generating the RSS feed. Why, I wonder, does the text end up in one but not the other?&#38;gt;
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>

