<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>ThemeShaper Forums Tag: show images</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Sun, 19 May 2013 11:17:29 +0000</pubDate>

<item>
<title>Andrea on "How to show images when listing categories?"</title>
<link>http://themeshaper.com/forums/topic/how-to-show-images-when-listing-categories#post-4917</link>
<pubDate>Fri, 03 Jul 2009 19:59:34 +0000</pubDate>
<dc:creator>Andrea</dc:creator>
<guid isPermaLink="false">4917@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;OMG!!!! Working ! :) Thank you!
&#60;/p&#62;</description>
</item>
<item>
<title>Chris on "How to show images when listing categories?"</title>
<link>http://themeshaper.com/forums/topic/how-to-show-images-when-listing-categories#post-4906</link>
<pubDate>Fri, 03 Jul 2009 13:04:01 +0000</pubDate>
<dc:creator>Chris</dc:creator>
<guid isPermaLink="false">4906@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Sorry .. wrong direction 'cause of the mentioned cliparts.&#60;/p&#62;
&#60;p&#62;Remove the last bracket .. the code should be:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;function my_content($content) {
	if (is_category()) {
		$content = &#38;#39;full&#38;#39;;
	}
	return $content;
}
add_filter(&#38;#39;thematic_content&#38;#39;, &#38;#39;my_content&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Chris
&#60;/p&#62;</description>
</item>
<item>
<title>Andrea on "How to show images when listing categories?"</title>
<link>http://themeshaper.com/forums/topic/how-to-show-images-when-listing-categories#post-4886</link>
<pubDate>Thu, 02 Jul 2009 21:15:47 +0000</pubDate>
<dc:creator>Andrea</dc:creator>
<guid isPermaLink="false">4886@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;this is a beautiful theme and thank you for your response and it is a good idea for the gallery part of a web page but for my blog I couldn't find a solution in there.&#60;br /&#62;
I would like to see the posts after a click on a category as posts and not shorten without pics.&#60;br /&#62;
Is this the right function at all?&#60;/p&#62;
&#60;p&#62;function my_content($content) {&#60;br /&#62;
if (is_category()) {&#60;br /&#62;
$content = 'full';&#60;br /&#62;
}&#60;br /&#62;
return $content;&#60;br /&#62;
}&#60;br /&#62;
add_filter('thematic_content', 'my_content');&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;Does anyone have an idea?
&#60;/p&#62;</description>
</item>
<item>
<title>Chris on "How to show images when listing categories?"</title>
<link>http://themeshaper.com/forums/topic/how-to-show-images-when-listing-categories#post-4868</link>
<pubDate>Thu, 02 Jul 2009 11:25:13 +0000</pubDate>
<dc:creator>Chris</dc:creator>
<guid isPermaLink="false">4868@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;get your hands on &#60;a href=&#34;http://www.chris-wallace.com/2009/05/04/gallery-wordpress-theme/&#34;&#62;Gallery Theme&#60;/a&#62; and take a look how it is solved there.&#60;/p&#62;
&#60;p&#62;Chris
&#60;/p&#62;</description>
</item>
<item>
<title>Andrea on "How to show images when listing categories?"</title>
<link>http://themeshaper.com/forums/topic/how-to-show-images-when-listing-categories#post-4860</link>
<pubDate>Wed, 01 Jul 2009 22:56:59 +0000</pubDate>
<dc:creator>Andrea</dc:creator>
<guid isPermaLink="false">4860@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I have the same question.&#60;br /&#62;
I tried but it didn't work out. Is there something I did wrong? Is there something I have to specify further?&#60;br /&#62;
This is what I saved in my functions.php:&#60;/p&#62;
&#60;p&#62;&#38;lt;?php&#60;/p&#62;
&#60;p&#62;//&#60;br /&#62;
//  Custom Child Theme Functions&#60;br /&#62;
//&#60;/p&#62;
&#60;p&#62;// I've included a &#34;commented out&#34; sample function below that'll add a home link to your menu&#60;br /&#62;
// More ideas can be found on &#34;A Guide To Customizing The Thematic Theme Framework&#34;&#60;br /&#62;
// &#60;a href=&#34;http://themeshaper.com/thematic-for-wordpress/guide-customizing-thematic-theme-framework/&#34; rel=&#34;nofollow&#34;&#62;http://themeshaper.com/thematic-for-wordpress/guide-customizing-thematic-theme-framework/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;// Adds a home link to your menu&#60;br /&#62;
// &#60;a href=&#34;http://codex.wordpress.org/Template_Tags/wp_page_menu&#34; rel=&#34;nofollow&#34;&#62;http://codex.wordpress.org/Template_Tags/wp_page_menu&#60;/a&#62;&#60;br /&#62;
//function childtheme_menu_args($args) {&#60;br /&#62;
//    $args = array(&#60;br /&#62;
//        'show_home' =&#38;gt; 'Home',&#60;br /&#62;
//        'sort_column' =&#38;gt; 'menu_order',&#60;br /&#62;
//        'menu_class' =&#38;gt; 'menu',&#60;br /&#62;
//        'echo' =&#38;gt; true&#60;br /&#62;
//    );&#60;br /&#62;
//	return $args;&#60;br /&#62;
//}&#60;br /&#62;
//add_filter('wp_page_menu_args','childtheme_menu_args');&#60;/p&#62;
&#60;p&#62;function remove_thematic_actions() {&#60;br /&#62;
 remove_action('thematic_header','thematic_blogtitle',3);&#60;br /&#62;
 remove_action('thematic_header','thematic_blogdescription',5);&#60;br /&#62;
}&#60;br /&#62;
add_action('init','remove_stuff');&#60;/p&#62;
&#60;p&#62;function my_content($content) {&#60;br /&#62;
    if (is_category()) {&#60;br /&#62;
        $content = 'full';&#60;br /&#62;
    }&#60;br /&#62;
    return $content;&#60;br /&#62;
}&#60;br /&#62;
add_filter('thematic_content', 'my_content');&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;?&#38;gt;
&#60;/p&#62;</description>
</item>
<item>
<title>gnurf on "How to show images when listing categories?"</title>
<link>http://themeshaper.com/forums/topic/how-to-show-images-when-listing-categories#post-4699</link>
<pubDate>Tue, 23 Jun 2009 17:00:07 +0000</pubDate>
<dc:creator>gnurf</dc:creator>
<guid isPermaLink="false">4699@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;OK problem solved, I found the solution here: &#60;a href=&#34;http://themeshaper.com/forums/topic/filter-thematic-loop&#34; rel=&#34;nofollow&#34;&#62;http://themeshaper.com/forums/topic/filter-thematic-loop&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;-Paul
&#60;/p&#62;</description>
</item>
<item>
<title>gnurf on "How to show images when listing categories?"</title>
<link>http://themeshaper.com/forums/topic/how-to-show-images-when-listing-categories#post-4698</link>
<pubDate>Tue, 23 Jun 2009 13:29:01 +0000</pubDate>
<dc:creator>gnurf</dc:creator>
<guid isPermaLink="false">4698@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi, I'm new here so sorry if this has been asked before:&#60;/p&#62;
&#60;p&#62;I would like the images in my posts to show when I list a category. For example, I have my clipart available for download on my site, and when I click on the clipart category I would like to see the clipart images instead of text only. Actually it goes for all category listings, as I also have my portfolio as a category.&#60;/p&#62;
&#60;p&#62;Grateful for any help,&#60;br /&#62;
Paul
&#60;/p&#62;</description>
</item>

</channel>
</rss>
