<?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: Recent Topics</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Sat, 04 Feb 2012 03:37:17 +0000</pubDate>

<item>
<title>CircleReader on "How are you using Thematic?"</title>
<link>http://themeshaper.com/forums/topic/how-are-you-using-thematic#post-4</link>
<pubDate>Wed, 16 Jul 2008 19:44:20 +0000</pubDate>
<dc:creator>CircleReader</dc:creator>
<guid isPermaLink="false">4@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Ian's Thematic theme framework is currently taking some abuse from my current Child Theme over at &#60;a href=&#34;http://readingcirclebooks.com&#34;&#62;Reading Circle Books&#60;/a&#62;. With a little help from my friends, I hope that child will grow up to be a civil-to-all-browsers, handsome, productive website some day. :)&#60;/p&#62;
&#60;p&#62;Meanwhile, I'd love to see how others are putting Ian's work to use. Please, post a link and show off your &#60;em&#62;Thematic&#60;/em&#62; site!
&#60;/p&#62;</description>
</item>
<item>
<title>lastraw on "previous link in category showing same current posts"</title>
<link>http://themeshaper.com/forums/topic/previous-link-in-category-showing-same-current-posts#post-22610</link>
<pubDate>Thu, 11 Aug 2011 02:15:09 +0000</pubDate>
<dc:creator>lastraw</dc:creator>
<guid isPermaLink="false">22610@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I think I remember seeing the answer to this here somewhere but can't find it. Here is an example on my test site: &#60;a href=&#34;http://www.dingdongnation.com/category/life/&#34; rel=&#34;nofollow&#34;&#62;http://www.dingdongnation.com/category/life/&#60;/a&#62; (sorry takes a long time to load) at the bottom older posts goes to a page 2 but it's the same posts as page 1
&#60;/p&#62;</description>
</item>
<item>
<title>ScottNix on "HTML5 Boilerplate Header with Thematic"</title>
<link>http://themeshaper.com/forums/topic/html5-boilerplate-header-with-thematic#post-24566</link>
<pubDate>Tue, 03 Jan 2012 03:40:24 +0000</pubDate>
<dc:creator>ScottNix</dc:creator>
<guid isPermaLink="false">24566@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I had a project where I needed Modernizr, so I added a no-js class to the html file, but the way I was prevously doing it is I would pull in the header.php into my child theme and comment out 2 lines, it felt dirty, so I fixed it so it now works from the functions.php file only.&#60;/p&#62;
&#60;p&#62;HTML5 Boilerplate Style&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;// creates the doctype section ( html5 boilerplate style )
function childtheme_create_doctype() {
	$content = &#38;quot;&#38;lt;!doctype html&#38;gt;&#38;quot; . &#38;quot;\n&#38;quot;;
	$content .= &#38;#39;&#38;lt;!--[if lt IE 7]&#38;gt; &#38;lt;html class=&#38;quot;no-js lt-ie9 lt-ie8 lt-ie7 ie6&#38;quot; dir=&#38;quot;&#38;#39; . get_bloginfo (&#38;#39;text_direction&#38;#39;) . &#38;#39;&#38;quot; lang=&#38;quot;&#38;#39;. get_bloginfo (&#38;#39;language&#38;#39;) . &#38;#39;&#38;quot;&#38;gt; &#38;lt;![endif]--&#38;gt;&#38;#39; . &#38;quot;\n&#38;quot;;
	$content .= &#38;#39;&#38;lt;!--[if IE 7]&#38;gt; &#38;lt;html class=&#38;quot;no-js lt-ie9 lt-ie8 ie7&#38;quot; dir=&#38;quot;&#38;#39; . get_bloginfo (&#38;#39;text_direction&#38;#39;) . &#38;#39;&#38;quot; lang=&#38;quot;&#38;#39;. get_bloginfo (&#38;#39;language&#38;#39;) . &#38;#39;&#38;quot;&#38;gt; &#38;lt;![endif]--&#38;gt;&#38;#39;. &#38;quot;\n&#38;quot;;
	$content .= &#38;#39;&#38;lt;!--[if IE 8]&#38;gt; &#38;lt;html class=&#38;quot;no-js lt-ie9 ie8&#38;quot; dir=&#38;quot;&#38;#39; . get_bloginfo (&#38;#39;text_direction&#38;#39;) . &#38;#39;&#38;quot; lang=&#38;quot;&#38;#39;. get_bloginfo (&#38;#39;language&#38;#39;) . &#38;#39;&#38;quot;&#38;gt; &#38;lt;![endif]--&#38;gt;&#38;#39; . &#38;quot;\n&#38;quot;;
	$content .= &#38;quot;&#38;lt;!--[if gt IE 8]&#38;gt;&#38;lt;!--&#38;gt;&#38;quot; . &#38;quot;\n&#38;quot;;
	$content .= &#38;quot;&#38;lt;html class=\&#38;quot;no-js\&#38;quot;&#38;quot;;
	return $content;
}
add_filter(&#38;#39;thematic_create_doctype&#38;#39;, &#38;#39;childtheme_create_doctype&#38;#39;);

// creates the head and meta charset tags
function childtheme_head_profile() {
	$content = &#38;quot;&#38;lt;!--&#38;lt;![endif]--&#38;gt;&#38;quot;;
	$content .= &#38;quot;\n&#38;quot; . &#38;quot;&#38;lt;head&#38;gt;&#38;quot; . &#38;quot;\n&#38;quot;;
	$content .= &#38;quot;\n\t&#38;quot; . &#38;quot;&#38;lt;meta charset=\&#38;quot;utf-8\&#38;quot;&#38;gt;&#38;quot; . &#38;quot;\n\n&#38;quot;;
	return $content;
}
add_filter(&#38;#39;thematic_head_profile&#38;#39;, &#38;#39;childtheme_head_profile&#38;#39;);	

// remove meta charset tag, now in the above function
function childtheme_create_contenttype() {
	// silence
}
add_filter(&#38;#39;thematic_create_contenttype&#38;#39;, &#38;#39;childtheme_create_contenttype&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Ouputs in the Header&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;!doctype html&#38;gt;
&#38;lt;!--[if lt IE 7]&#38;gt; &#38;lt;html class=&#38;quot;no-js lt-ie9 lt-ie8 lt-ie7 ie6&#38;quot; dir=&#38;quot;ltr&#38;quot; lang=&#38;quot;en-US&#38;quot;&#38;gt; &#38;lt;![endif]--&#38;gt;
&#38;lt;!--[if IE 7]&#38;gt; &#38;lt;html class=&#38;quot;no-js lt-ie9 lt-ie8 ie7&#38;quot; dir=&#38;quot;ltr&#38;quot; lang=&#38;quot;en-US&#38;quot;&#38;gt; &#38;lt;![endif]--&#38;gt;
&#38;lt;!--[if IE 8]&#38;gt; &#38;lt;html class=&#38;quot;no-js lt-ie9 ie8&#38;quot; dir=&#38;quot;ltr&#38;quot; lang=&#38;quot;en-US&#38;quot;&#38;gt; &#38;lt;![endif]--&#38;gt;
&#38;lt;!--[if gt IE 8]&#38;gt;&#38;lt;!--&#38;gt;
&#38;lt;html class=&#38;quot;no-js&#38;quot; dir=&#38;quot;ltr&#38;quot; lang=&#38;quot;en-US&#38;quot;&#38;gt;
&#38;lt;!--&#38;lt;![endif]--&#38;gt;
&#38;lt;head&#38;gt;

	&#38;lt;meta charset=&#38;quot;utf-8&#38;quot;&#38;gt;

	&#38;lt;title&#38;gt;Dev Site &#124; Just another WordPress site&#38;lt;/title&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I also made another &#34;cleaner&#34; HTML5 header which also has the no-js class and just has 1 class of &#34;.ie&#34; for IE6, IE7 and IE8 and is more intended for sites that don't care about supporting IE6. If you are good at CSS and tend to never need IE specific CSS you might want to try the other version &#60;a href=&#34;http://scottnix.com/2012/html5-header-with-thematic/&#34; rel=&#34;nofollow&#34;&#62;http://scottnix.com/2012/html5-header-with-thematic/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Eventually I will get around to cleaning up some stuff and post the information on how to get Modernizr on a Thematic theme here too (which is cake) but I just have to write it up.&#60;/p&#62;
&#60;p&#62;Any suggestions/changes/thoughts are welcome, thanks.
&#60;/p&#62;</description>
</item>
<item>
<title>bigdanprice on "Need some help, Im looking for a plugin."</title>
<link>http://themeshaper.com/forums/topic/need-some-help-im-looking-for-a-plugin#post-25162</link>
<pubDate>Fri, 03 Feb 2012 12:43:55 +0000</pubDate>
<dc:creator>bigdanprice</dc:creator>
<guid isPermaLink="false">25162@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi All,&#60;br /&#62;
Ive got a client that wants an image slider with an audio clip on the image change, but only for the first round of images... anyone got any thoughts on this? There must be a plugin out there that can do it, but Im at a loss after trawling through hundreds of offerings! (Im trying to avoid flash if possible)&#60;/p&#62;
&#60;p&#62;I was thinking as an ugly hack I could go back to the 1997 web and play the audio clip timed to the image change but want to avoid this...&#60;/p&#62;
&#60;p&#62;Ive even tried explaining that noises on websites are annoying, but they're adamant!&#60;/p&#62;
&#60;p&#62;Can you help me Themeshaper forums? Your my only hope!
&#60;/p&#62;</description>
</item>
<item>
<title>jonnycj on "WP e-Commerce 3.8 - anyone noticing a clash with Thematic?"</title>
<link>http://themeshaper.com/forums/topic/wp-e-commerce-38-anyone-noticing-a-clash-with-thematic#post-20494</link>
<pubDate>Tue, 12 Apr 2011 14:29:37 +0000</pubDate>
<dc:creator>jonnycj</dc:creator>
<guid isPermaLink="false">20494@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I have recently upgraded the WP e-Commerce plugin on my Thematic Wordpress install to version 3.8.&#60;br /&#62;
I now have lost the the sidebar (primary and secondary aside) and the footer (subsidiary asides) from the main shop front page (wpsc-products_page.php) - see link here:&#60;br /&#62;
&#60;a href=&#34;http://develop.survivorspoetry.org/?page_id=795&#34; rel=&#34;nofollow&#34;&#62;http://develop.survivorspoetry.org/?page_id=795&#60;/a&#62;&#60;br /&#62;
&#60;a href=&#34;http://develop.survivorspoetry.org/?page_id=795&#34;&#62;link 1&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;All asides and subsidiaries appear fine on other WP e-Commerce pages:&#60;br /&#62;
&#60;a href=&#34;http://develop.survivorspoetry.org/?page_id=798&#34; rel=&#34;nofollow&#34;&#62;http://develop.survivorspoetry.org/?page_id=798&#60;/a&#62;&#60;br /&#62;
&#60;a href=&#34;http://develop.survivorspoetry.org/?page_id=798&#34;&#62;link 2&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;So is there some conflict specific to Thematic and this main WP e-Commerce page ? Anyone else noticed this ? Or is it just my child theme ?&#60;/p&#62;
&#60;p&#62;Any thoughts greatly appreciated as usual
&#60;/p&#62;</description>
</item>
<item>
<title>petergus on "enable widget areas in WP E-commerce?"</title>
<link>http://themeshaper.com/forums/topic/enable-widget-areas-in-wp-e-commerce#post-22875</link>
<pubDate>Sun, 28 Aug 2011 03:30:15 +0000</pubDate>
<dc:creator>petergus</dc:creator>
<guid isPermaLink="false">22875@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;ive noticed that only the primary and secondary widget areas are showing up in the wp e-commerce pages, do i need to enable the other widgets somewhere??&#60;br /&#62;
this is interested, from here i noticed there is a difference in widget types - &#60;a href=&#34;http://bluemandala.com/thematic/thematic-structure.html&#34; rel=&#34;nofollow&#34;&#62;http://bluemandala.com/thematic/thematic-structure.html&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>tommo77funk on "Dropdown menu Z-index"</title>
<link>http://themeshaper.com/forums/topic/dropdown-menu-z-index#post-3610</link>
<pubDate>Wed, 29 Apr 2009 11:38:03 +0000</pubDate>
<dc:creator>tommo77funk</dc:creator>
<guid isPermaLink="false">3610@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;   I have tried setting the z-index of the dropdown nav menu, because the dropdown is disappearing behind my flash panorama. I have tried z-index on the widget, but no joy, so have now wrapped the panorama in a div, called 'test' and this does not work either.&#60;/p&#62;
&#60;p&#62;Please see &#60;a href=&#34;http://www.panoraks.co.uk/&#34; rel=&#34;nofollow&#34;&#62;http://www.panoraks.co.uk/&#60;/a&#62; and place mouse over the a button in the nav menu, [lease notice the dropdown becomes hidden by the flash panorama.&#60;/p&#62;
&#60;p&#62;the css I have tried&#60;/p&#62;
&#60;p&#62;#test  {&#60;br /&#62;
z-index:-10;&#60;br /&#62;
}&#60;br /&#62;
.menu  {z-index:10;}&#60;/p&#62;
&#60;p&#62;Is there a way to do it in functions.php do you think, or is css and z-index the way to go ?&#60;/p&#62;
&#60;p&#62;As usual many many thanks in advance :)&#60;/p&#62;
&#60;p&#62;tom
&#60;/p&#62;</description>
</item>
<item>
<title>Jagst3r15 on "Child Theme and commercial usage"</title>
<link>http://themeshaper.com/forums/topic/child-theme-and-commercial-usage#post-25144</link>
<pubDate>Wed, 01 Feb 2012 19:22:35 +0000</pubDate>
<dc:creator>Jagst3r15</dc:creator>
<guid isPermaLink="false">25144@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi there, so I am a web developer who knows quite a bit, but am just getting into WordPress development. With that being said, I have no idea about the legality of selling themes and whatnot. If I create a child theme with Thematic, am I aloud to sell the Child Theme via a place like ThemeForest or something?&#60;/p&#62;
&#60;p&#62;Thanks in advance!
&#60;/p&#62;</description>
</item>
<item>
<title>krowchuk on "Adding non-widget content to sidebars (asides)"</title>
<link>http://themeshaper.com/forums/topic/adding-non-widget-content-to-sidebars-asides#post-17312</link>
<pubDate>Sat, 27 Nov 2010 21:49:58 +0000</pubDate>
<dc:creator>krowchuk</dc:creator>
<guid isPermaLink="false">17312@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;In the spirit of giving back to the community as a way of saying thanks, I am posting a solution that I have used to an issue that had me stumped for a long time. I hope that somebody will find this useful!&#60;/p&#62;
&#60;p&#62;While switching my old theme over to Thematic I wanted to be able to place non-widgetized functions into the main and secondary asides (sidebars) above and below any widgets that I might use in those sidebars.  While I am using a 3 column (primary aside to left, content in middle, secondary aside to the right) layout, the information below could prove to be useful for other layouts as well.&#60;/p&#62;
&#60;p&#62;Like most things in Wordpress and Thematic, there are several ways to accomplish this. I am not very well versed in php and barely competent in css, (but wish to learn and get better at both!) so my method that I finally settled on may not be the best for you. Likewise, if anyone can share a method that would accomplish this in a better way, I would love to learn about it.&#60;/p&#62;
&#60;p&#62;So, to begin;&#60;/p&#62;
&#60;p&#62;I wanted to be able to place the thumbnail at the top of the primary aside (in 3col layout this is the left sidebar) and my current theme uses a custom field for the caption below the thumbnail image. &#60;/p&#62;
&#60;p&#62;Below these items I wished to be able to add any widget I might need in the future.&#60;/p&#62;
&#60;p&#62;The code I use in my old theme to display this:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;div class=&#38;quot;sidebar widesidebar&#38;quot;&#38;gt;
  &#38;lt;?php echo get_the_post_thumbnail($wp_query-&#38;gt;post-&#38;gt;ID); ?&#38;gt;
    &#38;lt;div id=&#38;quot;thumb-caption&#38;quot;&#38;gt;
      &#38;lt;h2&#38;gt;
        &#38;lt;?php echo get_post_meta($post-&#38;gt;ID, &#38;#39;thumb_caption&#38;#39;, true); ?&#38;gt;
      &#38;lt;/h2&#38;gt;
    &#38;lt;/div&#38;gt;&#38;lt;!-- end thumb-caption --&#38;gt;

&#38;lt;?php if (!function_exists(&#38;#39;dynamic_sidebar&#38;#39;) &#124;&#124;
         !dynamic_sidebar(&#38;#39;wide&#38;#39;)) : ?&#38;gt;
&#38;lt;?php endif; ?&#38;gt;

&#38;lt;/div&#38;gt;&#38;lt;!--end sidebar--&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;This presented a challenge to my Thematic &#34;remodeling&#34; adventure, since I was still stuck in my old way of thinking, that is, to simply customize the code inside the sidebar.  There was not an (apparently) easy way to do this in Thematic without either;&#60;/p&#62;
&#60;p&#62;a-) over riding the entire aside with a child aside&#60;/p&#62;
&#60;p&#62;or...&#60;/p&#62;
&#60;p&#62;b-) using a plugin that allows you to place and execute custom php into a widget and then place that widget into the sidebar.&#60;/p&#62;
&#60;p&#62;I actually decided to try &#34;option b&#34; but quickly abandoned that when it didn't quite work so well with multiple copies of the widget in the same sidebar.&#60;/p&#62;
&#60;p&#62;I really wanted to do this the &#34;Thematic&#34; way!  Without even really knowing yet what that is...&#60;/p&#62;
&#60;p&#62;My first attempt was to create a function using an action hook into thematic_abovemainasides(). &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// Thumbs and custom field
function thumbnail() {
?&#38;gt;
&#38;lt;div id=&#38;quot;above-aside&#38;quot;&#38;gt;
  &#38;lt;ul&#38;gt;
    &#38;lt;?php $postid = get_the_ID(); ?&#38;gt;
    &#38;lt;?php the_post_thumbnail(); ?&#38;gt;
      &#38;lt;div class=&#38;quot;thumb-caption&#38;quot;&#38;gt;
       &#38;lt;h3&#38;gt;&#38;quot;&#38;lt;?php echo get_post_meta($postid, &#38;#39;thumb_caption&#38;#39;, true); ?&#38;gt;&#38;quot;&#38;lt;/h3&#38;gt;
      &#38;lt;/div&#38;gt;&#38;lt;!-- end thumb-caption --&#38;gt;
  &#38;lt;/ul&#38;gt;
&#38;lt;/div&#38;gt;&#38;lt;!-- end above-aside --&#38;gt;
&#38;lt;?php
}
add_action(&#38;#39;thematic_abovemainasides&#38;#39;, &#38;#39;thumbnail&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I was on the right path as it turns out, however, I created a css styling nightmare! The first thing it did was break my lovely 3 column layout!  I managed to fix that when it was suggested that I needed to give my div the same classes as the primary aside. &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// Thumbs and custom field
function thumbnail() {
?&#38;gt;
&#38;lt;div id=&#38;quot;primary&#38;quot; class=&#38;quot;aside main-aside&#38;quot;&#38;gt;
  &#38;lt;ul&#38;gt;
    &#38;lt;?php $postid = get_the_ID(); ?&#38;gt;
    &#38;lt;?php echo get_the_post_thumbnail(); ?&#38;gt;
      &#38;lt;div class=&#38;quot;callout-caption&#38;quot;&#38;gt;
       &#38;lt;h3&#38;gt;&#38;quot;&#38;lt;?php echo get_post_meta($postid, &#38;#39;callout_caption&#38;#39;, true); ?&#38;gt;&#38;quot;&#38;lt;/h3&#38;gt;
      &#38;lt;/div&#38;gt;&#38;lt;!-- end callout-caption --&#38;gt;
  &#38;lt;/ul&#38;gt;
&#38;lt;/div&#38;gt;&#38;lt;!-- end primary main aside --&#38;gt;
&#38;lt;?php
}
add_action(&#38;#39;thematic_abovemainasides&#38;#39;, &#38;#39;thumbnail&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Beautiful! I thought the problem was solved, and it would have been if I didn't need to place a widget into the primary aside. The lesson to be learned here was that any content that you action hook into the thematic_abovemainasides() appears above the main asides, completely outside of the div containing the aside. In this case;&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;div id=&#38;quot;primary&#38;quot; class=&#38;quot;aside main-aside&#38;quot;&#38;gt;
  &#38;lt;!-- Thumb and custom field display in here --&#38;gt;
&#38;lt;/div&#38;gt;&#38;lt;!-- end primary, aside, main-aside --&#38;gt;

&#38;lt;div id=&#38;quot;primary&#38;quot; class=&#38;quot;aside main-aside&#38;quot;&#38;gt;
  &#38;lt;!-- widgets display in here --&#38;gt;
&#38;lt;/div&#38;gt;&#38;lt;!-- end primary, aside, main-aside --&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Aside from producing invalid html code (#primary -&#38;gt; twice) this created a css styling nightmare where the second primary div overlapped the first and I could not figure out how to place it correctly below the first one.  Besides, what I really wanted was the thumb and custom field &#34;inside&#34; the primary aside, not above it!&#60;/p&#62;
&#60;p&#62;Like this;&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;div id=&#38;quot;primary&#38;quot; class=&#38;quot;aside main-aside&#38;quot;&#38;gt;
  &#38;lt;!-- Thumb and custom field display in here --&#38;gt;
  &#38;lt;!-- widgets display in here --&#38;gt;
&#38;lt;/div&#38;gt;&#38;lt;!-- end primary, aside, main-aside --&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You could simply take option b- and install a plugin to execute your php inside a widget and drag that into the primary aside from the widgets area of dashboard, but what if you want to display a custom field or function below any widgets in that aside?&#60;/p&#62;
&#60;p&#62;The solution is to think outside of the box, or div as it may be in this case!&#60;/p&#62;
&#60;p&#62;Thematic has numerous action hook areas, indeed there is one called thematic_betweenmainasides() and another called thematic_belowmainasides()&#60;/p&#62;
&#60;p&#62;What this allowed me to do was to create a &#34;primary wrapper&#34; container so to speak, by opening the wrapping div in thematic_abovemainasides and closing it in the thematic_betweenmainasides like this:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// Add wrap div into the primary aside using abovemainasides and belowmainasides
function wrap_aboveprimary() {
?&#38;gt;
  &#38;lt;div id=&#38;quot;primary-wrap&#38;quot; class=&#38;quot;aside main-aside&#38;quot;&#38;gt;
    &#38;lt;ul&#38;gt;
      &#38;lt;?php $postid = get_the_ID(); ?&#38;gt;
      &#38;lt;?php echo get_the_post_thumbnail(); ?&#38;gt;
        &#38;lt;div class=&#38;quot;thumb-caption&#38;quot;&#38;gt;
       	  &#38;lt;h3&#38;gt;&#38;quot;&#38;lt;?php echo get_post_meta($postid, &#38;#39;thumb_caption&#38;#39;, true); ?&#38;gt;&#38;quot;&#38;lt;/h3&#38;gt;
      	&#38;lt;/div&#38;gt;&#38;lt;!-- end thumb-caption --&#38;gt;
      	&#38;lt;/ul&#38;gt;
&#38;lt;?php
}
add_action(&#38;#39;thematic_abovemainasides&#38;#39;,&#38;#39;wrap_aboveprimary&#38;#39;);

function wrap_belowprimary() {
?&#38;gt;
  &#38;lt;/div&#38;gt;&#38;lt;!-- end primary-wrap --&#38;gt;
&#38;lt;?php
}
add_action(&#38;#39;thematic_betweenmainasides&#38;#39;,&#38;#39;wrap_belowprimary&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;now all you need to do is to style it, copy the #primary css selectors and paste them into #primary-wrap, then change the #primary margin to 0, like this (your widths, margins and paddings may differ);&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;#primary {
	border:none; /* remove default border */
	float: left;
	margin: 0;
	width: 340px;
	padding: 7px 0 0;
	}

#primary-wrap {
	float: left;
	margin: 0 0 0 -940px;
	width: 340px;
	padding: 7px 0 0;
	}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;There it is, a thing of Thematic beauty! My &#34;Aha - Thematica!&#34; moment!&#60;/p&#62;
&#60;p&#62;The thumb and custom field appears above the primary asides widgets in exactly the same place as I wished, top of the left aside. They &#34;appear&#34; to be inside the aside, but in reality they are inside a div that wraps the complete aside.&#60;/p&#62;
&#60;p&#62;We could take this a few steps further now, adding more custom fields or functions below the widgetized area of the primary aside, such as;&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// Add wrap div into the primary aside using abovemainasides and belowmainasides
function wrap_aboveprimary() {
?&#38;gt;
  &#38;lt;div id=&#38;quot;primary-wrap&#38;quot; class=&#38;quot;aside main-aside&#38;quot;&#38;gt;
    &#38;lt;ul&#38;gt;
      &#38;lt;?php $postid = get_the_ID(); ?&#38;gt;
      &#38;lt;?php echo get_the_post_thumbnail(); ?&#38;gt;
        &#38;lt;div class=&#38;quot;thumb-caption&#38;quot;&#38;gt;
       	  &#38;lt;h3&#38;gt;&#38;quot;&#38;lt;?php echo get_post_meta($postid, &#38;#39;thumb_caption&#38;#39;, true); ?&#38;gt;&#38;quot;&#38;lt;/h3&#38;gt;
      	&#38;lt;/div&#38;gt;&#38;lt;!-- end thumb-caption --&#38;gt;
      	&#38;lt;/ul&#38;gt;
&#38;lt;?php
}
add_action(&#38;#39;thematic_abovemainasides&#38;#39;,&#38;#39;wrap_aboveprimary&#38;#39;);

function wrap_belowprimary() {
?&#38;gt;
  &#38;lt;ul&#38;gt;
    &#38;lt;li&#38;gt;&#38;lt;?php if(function_exists(&#38;#39;echo_ald_crp&#38;#39;)) echo_ald_crp(); ?&#38;gt;&#38;lt;/li&#38;gt;
    &#38;lt;li&#38;gt;&#38;lt;?php if(function_exists(&#38;#39;echo_ald_wherego&#38;#39;)) echo_ald_wherego(); ?&#38;gt;&#38;lt;/li&#38;gt;
  &#38;lt;/ul&#38;gt;
  &#38;lt;/div&#38;gt;&#38;lt;!-- end primary-wrap --&#38;gt;
&#38;lt;?php
}
add_action(&#38;#39;thematic_betweenmainasides&#38;#39;,&#38;#39;wrap_belowprimary&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Where I have added some calls to 2 of my favourite related post plugins that don't have widgets.&#60;/p&#62;
&#60;p&#62;And of course you could take this one step further to include some custom content at the top and bottom of Secondary aside as well. Open your div in thematic_betweenmainasides and close it in thematic_belowmainasides.  I haven't tested this yet, but it seems to me that the same magic could occur!&#60;/p&#62;
&#60;p&#62;Have fun!&#60;/p&#62;
&#60;p&#62;Chris
&#60;/p&#62;</description>
</item>
<item>
<title>fwunder on "Can I remove container div?"</title>
<link>http://themeshaper.com/forums/topic/can-i-remove-container-div#post-25154</link>
<pubDate>Thu, 02 Feb 2012 23:24:47 +0000</pubDate>
<dc:creator>fwunder</dc:creator>
<guid isPermaLink="false">25154@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;OK, I know I'm a bit obsessed, but I've been spending a day or so learning Compass and SASS (which rocks, BTW) and my self imposed exile was to: &#60;/p&#62;
&#60;p&#62;1) Create an easily modified Holy Grail 3 column fluid/fixed layout with equal height columns in Compass SASS. Done! ==&#38;gt; &#60;a href=&#34;http://grafiks101.com/holy-grail/&#34; rel=&#34;nofollow&#34;&#62;http://grafiks101.com/holy-grail/&#60;/a&#62; OK, that was fun.&#60;/p&#62;
&#60;p&#62;2) Quickly create a thematic site using the same code. Done! ==&#38;gt; &#60;a href=&#34;http://grafiks101.com/dev/&#34; rel=&#34;nofollow&#34;&#62;http://grafiks101.com/dev/&#60;/a&#62; Really, that was *a lot* easier than I though it would be and a *whole* lot easier than the brute force approach I took the first time. Pretty much a drop in replacement of css.&#60;/p&#62;
&#60;p&#62;Going forward, I now want to clean it up a bit. I seem to have a case of divitis. I really don't need &#34;container&#34; or even &#34;main&#34; for that matter. I'm really not sure how to properly dispose of them and what damage I might cause with brute force. Can I, should I do it or leave well enough alone?&#60;/p&#62;
&#60;p&#62;I should also say, that this wasn't just an exercise. I had a [wordpress] project  which required a pixel perfect 3 column layout to a &#34;designed to the fold&#34; print layout.  The Holy Grail 3 column layout was exactly what I needed and Thematic made it possible. Now I would like to streamline the process for the next time...&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
</item>
<item>
<title>Mike_sa on "adding shortcode"</title>
<link>http://themeshaper.com/forums/topic/adding-shortcode#post-25149</link>
<pubDate>Thu, 02 Feb 2012 14:44:02 +0000</pubDate>
<dc:creator>Mike_sa</dc:creator>
<guid isPermaLink="false">25149@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi &#60;/p&#62;
&#60;p&#62;I have written a shortcode for a plugin I am coding. &#60;/p&#62;
&#60;p&#62;I have got the shortcode working, it calls the custom post types from the custom post type I have added in the plugin. &#60;/p&#62;
&#60;p&#62;At the moment all is working well but I need to add options to the shortcode like number of posts to display, slug, taxonomy, terms ect. &#60;/p&#62;
&#60;p&#62;Below is the shortcode I have written : &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// add shortcode portfolio
function portfolio($atts, $content = null) {
	extract(shortcode_atts(array(
		// loop for array of portfolio
	// add call for query
						$args = array(&#38;#39;orderby&#38;#39; =&#38;gt; &#38;#39;title&#38;#39;,
						&#38;#39;order&#38;#39; =&#38;gt; &#38;#39;date&#38;#39;,
						&#38;#39;posts_per_page&#38;#39; =&#38;gt; 20,

	&#38;#39;tax_query&#38;#39; =&#38;gt; array(
		array(
			&#38;#39;taxonomy&#38;#39; =&#38;gt; &#38;#39;Skills&#38;#39;,
			&#38;#39;field&#38;#39; =&#38;gt; &#38;#39;slug&#38;#39;,
			&#38;#39;terms&#38;#39; =&#38;gt; &#38;#39;Web-Design&#38;#39;,
			)
	)
)
	), $atts));
	$query = new WP_Query( $args );
// The Loop
while ( $query-&#38;gt;have_posts() ) : $query-&#38;gt;the_post();
	echo &#38;#39;&#38;lt;h2&#38;gt;&#38;#39;;
	the_title();
	echo &#38;#39;&#38;lt;/h2&#38;gt;&#38;#39;;
	echo &#38;#39;&#38;#39;;
	the_content();
	echo &#38;#39;
&#38;#39;;
endwhile;

// Reset Post Data
wp_reset_postdata();

}
add_shortcode(&#38;quot;port&#38;quot;, &#38;quot;portfolio&#38;quot;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;After looking at various tuts , I need to leave the variable empty and add an if statement. I have not been able to get that part to work ... &#60;/p&#62;
&#60;p&#62;Could someone please point me in the right direction . &#60;/p&#62;
&#60;p&#62;Many thanks
&#60;/p&#62;</description>
</item>
<item>
<title>violetabella on "Comment Bubble"</title>
<link>http://themeshaper.com/forums/topic/comment-bubble#post-25138</link>
<pubDate>Wed, 01 Feb 2012 01:30:47 +0000</pubDate>
<dc:creator>violetabella</dc:creator>
<guid isPermaLink="false">25138@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;HI! I've been trying to implement a comment bubble to my child theme, but not having much luck. I did try this tutorial, &#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://mrdanadams.com/2011/css-only-comment-count-bubble-in-wordpress/&#34; rel=&#34;nofollow&#34;&#62;http://mrdanadams.com/2011/css-only-comment-count-bubble-in-wordpress/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;but the bubble did not show up (even on the posts with comments). &#60;/p&#62;
&#60;p&#62;Is there another way to go about doing this?
&#60;/p&#62;</description>
</item>
<item>
<title>gary-miller on "Changing &#60;title&#62; layout using $doctitle"</title>
<link>http://themeshaper.com/forums/topic/changing-lttitlegt-layout-using-doctitle#post-12479</link>
<pubDate>Wed, 19 May 2010 17:32:23 +0000</pubDate>
<dc:creator>gary-miller</dc:creator>
<guid isPermaLink="false">12479@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi all, hope someone can help me with this please.&#60;/p&#62;
&#60;p&#62;I'm developing a Child Theme for Thematic and I want to change the default layout of the title tag, as set by $doctitle in the 'header-extensions' file.&#60;/p&#62;
&#60;p&#62;In my own 'functions.php' file I've tried lots of different ways to change what I want to no avail.&#60;/p&#62;
&#60;p&#62;Basically, I want to remove the default 'tab' setting, and one of the new lines after the tag.&#60;/p&#62;
&#60;p&#62;The best I've come up with is:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#60;br /&#62;
function easyaccess_doctitle($doctitle) {&#60;br /&#62;
		return $doctitle . &#34;\n&#34;;&#60;br /&#62;
	}&#60;br /&#62;
	add_filter('thematic_doctitle','easyaccess_doctitle');&#60;br /&#62;
&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;All this returns in the html page is:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#60;br /&#62;
&#38;lt;title&#38;gt;Array&#38;lt;/title&#38;gt;&#60;br /&#62;
&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Anyone got any suggestions please?
&#60;/p&#62;</description>
</item>
<item>
<title>jhismith on "How to align single navigation menu item right?"</title>
<link>http://themeshaper.com/forums/topic/how-to-align-single-navigation-menu-item-right#post-25020</link>
<pubDate>Tue, 24 Jan 2012 19:35:50 +0000</pubDate>
<dc:creator>jhismith</dc:creator>
<guid isPermaLink="false">25020@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I want to align a single navigation menu item right. I want the standard menu aligned left and an RSS Feed menu item aligned right. I think I have to assign CSS to a single menu item but I can't see where.
&#60;/p&#62;</description>
</item>
<item>
<title>MikeWills on "Adding link post format to Thematic"</title>
<link>http://themeshaper.com/forums/topic/adding-link-post-format-to-thematic#post-25050</link>
<pubDate>Thu, 26 Jan 2012 14:46:22 +0000</pubDate>
<dc:creator>MikeWills</dc:creator>
<guid isPermaLink="false">25050@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I have been in the process of adding the link post format to the thematic theme via a child theme (https://github.com/MikeWills/MikeWillsThematic). To be honest, this is the first time I have done any sort of theme work with WordPress.&#60;/p&#62;
&#60;p&#62;I have been able to change the title permalink to the link I am linking to (much like Daring Fireball) and adding a symbol to the title so that there is a visual to someone to realize that there may be a different behavior. (Example post: &#60;a href=&#34;http://mikewills.me/blog/why-you-should-outsource-ops&#34; rel=&#34;nofollow&#34;&#62;http://mikewills.me/blog/why-you-should-outsource-ops&#60;/a&#62;)&#60;/p&#62;
&#60;p&#62;Should I be using thematic's filters to push out these changes to the theme or should I be using WordPress's? Here is what I have now.&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;/**
 * Override the post title logic
 */
function mikewillsthematic_thematic_postheader_posttitle($posttitle) {
    if (has_post_format(&#38;#39;link&#38;#39;)) {
        $posttitle = &#38;#39;&#38;lt;h2 class=&#38;quot;entry-title&#38;quot;&#38;gt;&#38;lt;a href=&#38;quot;&#38;#39;;
        $posttitle .= get_post_meta( get_the_ID(), &#38;quot;post_format_data&#38;quot;, true);
        $posttitle .= &#38;#39;&#38;quot; title=&#38;quot;Direct link to article&#38;quot; rel=&#38;quot;bookmark&#38;quot;&#38;gt;&#38;#39;;
        $posttitle .= &#38;#39;&#38;#8734; &#38;#39;;
        $posttitle .= get_the_title();
        $posttitle .= &#38;quot;&#38;lt;/h2&#38;gt;\n&#38;quot;;
    }
    return $posttitle;
}
add_filter(&#38;#39;thematic_postheader_posttitle&#38;#39;, &#38;#39;mikewillsthematic_thematic_postheader_posttitle&#38;#39;);

function mikewillsthematic_rss_title($title) {

	if (has_post_format(&#38;#39;link&#38;#39;)) {
		$posttitle = &#38;#39;&#38;#8734; &#38;#39;;
        	$posttitle .= $title;
	} else
		$posttitle = $title;

	return $posttitle;
}
add_filter(&#38;#39;the_title_rss&#38;#39;, &#38;#39;mikewillsthematic_rss_title&#38;#39;);&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>chris_s on "Alternate stylesheet for iPad"</title>
<link>http://themeshaper.com/forums/topic/alternate-stylesheet-for-ipad#post-22457</link>
<pubDate>Thu, 28 Jul 2011 15:59:20 +0000</pubDate>
<dc:creator>chris_s</dc:creator>
<guid isPermaLink="false">22457@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I'm have a lot of fun with this one! So I have the following code and it's not working. Should I be using a Thematic hook instead? Where am i going wrong with this? It does work with an absolute URL address, but I obviously do not want that in the event things change down the line.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function ipad_css() {
if( preg_match(&#38;#39;/ipad/i&#38;#39;,$_SERVER[&#38;#39;HTTP_USER_AGENT&#38;#39;])) {?&#38;gt;
    &#38;lt;link rel=&#38;quot;stylesheet&#38;quot; type=&#38;quot;text/css&#38;quot; href=&#38;quot;&#38;lt;?php echo get_template_directory_uri(); ?&#38;gt;/ipad.css&#38;quot; media=&#38;quot;screen&#38;quot; /&#38;gt;
	&#38;lt;?php }
}
add_action(&#38;#39;wp_print_styles&#38;#39;,&#38;#39;ipad_css&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;In the event it matters, this is what is in my ipad.css stylesheet.&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;@import url(&#38;#39;../style.css&#38;#39;);

body.page {
	background: #6d80b5;
}

body.page #ipad-back {
	display: none;
}

#ipad-back {
    background: url(images/menu-btn.png) no-repeat scroll 0 0 transparent;
    height: 45px;
    width: 134px;
	float: right;
	margin-bottom: 25px;
}

#ipad-back a {
	display: inline-block;
	color: #fff;
	font-weight: bold;
	position: relative;
	top: 10px;
	left: 25px;
}&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>crashprojects on "Can I change the width of the menu to line up with the end of my header/content?"</title>
<link>http://themeshaper.com/forums/topic/can-i-change-the-width-of-the-menu-to-line-up-with-the-end-of-my-headercontent#post-25098</link>
<pubDate>Mon, 30 Jan 2012 21:29:49 +0000</pubDate>
<dc:creator>crashprojects</dc:creator>
<guid isPermaLink="false">25098@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;See here:  &#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://samh.crashprojects.com&#34; rel=&#34;nofollow&#34;&#62;http://samh.crashprojects.com&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Driving me nuts!
&#60;/p&#62;</description>
</item>
<item>
<title>proto on "Showing first news item as full and rest as titles"</title>
<link>http://themeshaper.com/forums/topic/showing-first-news-item-as-full-and-rest-as-titles#post-25090</link>
<pubDate>Mon, 30 Jan 2012 16:53:02 +0000</pubDate>
<dc:creator>proto</dc:creator>
<guid isPermaLink="false">25090@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hello all,&#60;/p&#62;
&#60;p&#62;I'm wondering if any kind folks can help me. I am looking to use my loop to output a category (in this case news) on my homepage. So far so good. I would like to ouput my news category posts with the first one as an excerpt and then after the excerpt have the next news post appear as just a title. Here's the loop, I've come up with which uses a counter to display which one to output (I know something's wrong but not sure what after trying a few variations!):&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;div id=&#38;quot;rowTwo&#38;quot; class=&#38;quot;grid_12&#38;quot;&#38;gt;&#38;lt;/div&#38;gt;
    &#38;lt;?php query_posts(&#38;#39;category_name=news&#38;#38;posts_per_page=2&#38;#39;);?&#38;gt;
&#38;lt;?php while (have_posts()) : the_post(); ?&#38;gt;
&#38;lt;?php $counter++; ?&#38;gt;
 &#38;lt;div id=&#38;quot;&#38;lt;?php if ($counter == 1) { echo&#38;#39;newsone&#38;quot; class=&#38;quot;grid_4&#38;#39;; } ?&#38;gt;&#38;quot;&#38;gt;
&#38;lt;?php thematic_postheader();?&#38;gt;
&#38;lt;div class=&#38;quot;entry-content&#38;quot;&#38;gt;
&#38;lt;?php
      if (has_post_thumbnail()) {
        the_post_thumbnail(&#38;#39;home_pic&#38;#39;);
      } ?&#38;gt;
		&#38;lt;?php the_excerpt(); ?&#38;gt;

       &#38;lt;a href=&#38;quot;&#38;lt;?php the_permalink(); ?&#38;gt;&#38;quot; class=&#38;quot;more&#38;quot;&#38;gt;
&#38;lt;?php echo more_text() ?&#38;gt;&#38;lt;/a&#38;gt;
    &#38;lt;/div&#38;gt;&#38;lt;!-- end of Entry Content --&#38;gt;
  &#38;lt;?php endwhile; ?&#38;gt;
   &#38;lt;?php else : ?&#38;gt;
&#38;lt;?php while (have_posts()) : the_post(); ?&#38;gt;
&#38;lt;?php $counter++; ?&#38;gt;
 &#38;lt;div id=&#38;quot;&#38;lt;?php if ($counter == 2) { echo&#38;#39;newstwo&#38;quot; class=&#38;quot;grid_4&#38;#39;; } ?&#38;gt;&#38;quot;&#38;gt;
		&#38;lt;h2&#38;gt;&#38;lt;a href=&#38;quot;&#38;lt;?php the_permalink() ?&#38;gt;&#38;quot;
rel=&#38;quot;bookmark&#38;quot; title=&#38;quot;Permanent Link to &#38;lt;?php the_title(); ?&#38;gt;&#38;quot;&#38;gt;
&#38;lt;?php the_title(); ?&#38;gt;
&#38;lt;/a&#38;gt;&#38;lt;/h2&#38;gt;
    &#38;lt;/div&#38;gt;&#38;lt;!-- end of Entry Content --&#38;gt;
    &#38;lt;/div&#38;gt;&#38;lt;!-- end of grid_4 --&#38;gt;
  &#38;lt;?php endwhile; ?&#38;gt;
   &#38;lt;?php rewind_posts(); ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;The error I'm getting is in Dremweaver suggesting that my syntax at the end of my custom loop in functions.php there is a syntax error. Any thoughts greatly appreciated!
&#60;/p&#62;</description>
</item>
<item>
<title>gnurf on "weekly posts listing"</title>
<link>http://themeshaper.com/forums/topic/weekly-posts-listing#post-25126</link>
<pubDate>Tue, 31 Jan 2012 12:16:27 +0000</pubDate>
<dc:creator>gnurf</dc:creator>
<guid isPermaLink="false">25126@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I hope someone can help me in the right direction with this one:&#60;/p&#62;
&#60;p&#62;Say you have some contributors writing posts about weekly happenings. One write about Monday happenings and another about Tuesday happenings and so on. These post are written a week or so in advance.&#60;/p&#62;
&#60;p&#62;How can I list all posts for a preferred week, for example current week and next week?&#60;/p&#62;
&#60;p&#62;All suggestions are welcome!&#60;/p&#62;
&#60;p&#62;-Paul
&#60;/p&#62;</description>
</item>
<item>
<title>kaylehope on "Removing Blog title on Thematic"</title>
<link>http://themeshaper.com/forums/topic/removing-blog-title-on-thematic#post-25115</link>
<pubDate>Tue, 31 Jan 2012 03:06:14 +0000</pubDate>
<dc:creator>kaylehope</dc:creator>
<guid isPermaLink="false">25115@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I need some help removing the blog title on thematic. I have created a header using the #blog-title tag. Now when I try to remove the title that is set there automatically it interferes with my custom header. &#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://kaylehope.com/wordpress/&#34; rel=&#34;nofollow&#34;&#62;http://kaylehope.com/wordpress/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Help please! Thanks!
&#60;/p&#62;</description>
</item>
<item>
<title>YDG on "2 Column Branding or Header DIV ?"</title>
<link>http://themeshaper.com/forums/topic/2-column-branding-or-header-div#post-9710</link>
<pubDate>Thu, 11 Feb 2010 17:38:54 +0000</pubDate>
<dc:creator>YDG</dc:creator>
<guid isPermaLink="false">9710@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I'm working on a child theme, and need a way separate either the header or branding div into 2 columns. My goal is to be able to insert a jpg logo in the left column and a swf in the right column. My theme needs to have a logo on and a swf side by side at the top of the page&#60;/p&#62;
&#60;p&#62;After looking at the Thematic page structure, the most logical place to do this is in the branding div area because it is only a wrapper for the title and description. But in order to do it, would I have to create another div and float one right and one left? &#60;/p&#62;
&#60;p&#62;If so, How do I register the new div in the frame work?&#60;/p&#62;
&#60;p&#62;Or is there a way to it through my functions?
&#60;/p&#62;</description>
</item>
<item>
<title>Itchybrain on "Child custom template not in template list"</title>
<link>http://themeshaper.com/forums/topic/child-custom-template-not-in-template-list#post-25104</link>
<pubDate>Mon, 30 Jan 2012 23:44:52 +0000</pubDate>
<dc:creator>Itchybrain</dc:creator>
<guid isPermaLink="false">25104@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Gday Themeshaper forum&#60;/p&#62;
&#60;p&#62;I have created a site using Thematic with a child theme. &#60;/p&#62;
&#60;p&#62;I made a custom template but it does not show in the available templates list. &#60;/p&#62;
&#60;p&#62;It is available in the list when put in the thematic parent directory, but is not available when moved into the child directory. &#60;/p&#62;
&#60;p&#62;Does anyone have any solutions for this?&#60;/p&#62;
&#60;p&#62;Thanks for any help you can provide.
&#60;/p&#62;</description>
</item>
<item>
<title>asimkhan12 on "How To Make Tags Pages Apear In Single Post in Gallery Thematic"</title>
<link>http://themeshaper.com/forums/topic/how-to-make-tags-pages-apear-in-single-post-in-gallery-thematic#post-24983</link>
<pubDate>Thu, 19 Jan 2012 15:49:01 +0000</pubDate>
<dc:creator>asimkhan12</dc:creator>
<guid isPermaLink="false">24983@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hello, I hope that i will get my answer from this support forum, on customizing Gallery Theme (Thematic). I'm new to thematic themes and don't know much about css and php just do things after reading so its difficult for me to understand and also there is less contribution available at google.&#60;/p&#62;
&#60;p&#62;My question is; how can i make tags appear on my single post just right under the &#34;Tweet This&#34; button.&#60;/p&#62;
&#60;p&#62;Please help me out if any one knows how to do or any good reference / guide will be appreciated, thanks. &#60;/p&#62;
&#60;p&#62;See this screenshot, i want just like this: &#60;a href=&#34;http://i41.tinypic.com/23jpl4w.png&#34; rel=&#34;nofollow&#34;&#62;http://i41.tinypic.com/23jpl4w.png&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>linup on "Changing page-title contents using functions.php"</title>
<link>http://themeshaper.com/forums/topic/changing-page-title-contents-using-functionsphp#post-25079</link>
<pubDate>Mon, 30 Jan 2012 06:36:55 +0000</pubDate>
<dc:creator>linup</dc:creator>
<guid isPermaLink="false">25079@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi there-&#60;br /&#62;
Loving this framework, but am new to any development &#38;#38; need some guidance as to how to change things using filters &#38;#38; action hooks....&#60;br /&#62;
For example, I need to get rid of the words &#34;category archives&#34; on my cat archives pages. These are default in the &#34;page-title.&#34;&#60;br /&#62;
I found the related code in content-extensions.php file (library &#38;gt; extensions folder). See below. I know I have to make this happen in my functions.php file in my child theme... but I am not clear on what to write in the functions.php code to get rid of the words, Category Archives.&#60;br /&#62;
Would someone be so kind as to walk me through this?&#60;br /&#62;
Thanks in advance... and thanks for this time-saving gem of a theme!&#60;br /&#62;
Lindsay&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;Code from content-extensions.php
// Filter the page title

// located in archive.php, attachement.php, author.php, category.php, search.php, tag.php

if (function_exists(&#38;#39;childtheme_override_page_title&#38;#39;))  {

	function thematic_page_title() {

		childtheme_override_page_title();

	}

} elseif (is_category()) {

				$content .= &#38;#39;&#38;lt;h1 class=&#38;quot;page-title&#38;quot;&#38;gt;&#38;#39;;

				$content .= __(&#38;#39;Category Archives:&#38;#39;, &#38;#39;thematic&#38;#39;);

				$content .= &#38;#39; &#38;lt;span&#38;gt;&#38;#39;;

				$content .= single_cat_title(&#38;#39;&#38;#39;, FALSE);

				$content .= &#38;#39;&#38;lt;/span&#38;gt;&#38;lt;/h1&#38;gt;&#38;#39; . &#38;quot;\n&#38;quot;;

				$content .= &#38;#39;&#38;lt;div class=&#38;quot;archive-meta&#38;quot;&#38;gt;&#38;#39;;

				if ( !(&#38;#39;&#38;#39;== category_description()) ) : $content .= apply_filters(&#38;#39;archive_meta&#38;#39;, category_description()); endif;

				$content .= &#38;#39;&#38;lt;/div&#38;gt;&#38;#39;;&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>tabasco on "Grid style layout for pages list"</title>
<link>http://themeshaper.com/forums/topic/grid-style-layout-for-pages-list#post-25077</link>
<pubDate>Mon, 30 Jan 2012 04:19:09 +0000</pubDate>
<dc:creator>tabasco</dc:creator>
<guid isPermaLink="false">25077@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hello all,&#60;/p&#62;
&#60;p&#62;I was wondering if there is a way for creating a grid layout for page entries. A description would be if I had a site for a school and one of the categories for the school was called sports. The sports page would be in a grid format showing multiple sports (child pages) with the title and a couple of lines from the page it's pointing to. I'd like to accomplish something like this: &#60;a href=&#34;http://codecanyon.net/item/ts-display-portfolio-and-gallery-plugin/full_screen_preview/147000&#34; rel=&#34;nofollow&#34;&#62;http://codecanyon.net/item/ts-display-portfolio-and-gallery-plugin/full_screen_preview/147000&#60;/a&#62; *select the three or four column in TS Display tab.&#60;/p&#62;
&#60;p&#62;Being a noob, I don't wouldn't know what php code to write up and where/which php doc to put it in. I have some knowledge of css so i think I'd be able to get by there. I'm sorry if this has been asked already but I've searched the forum to no avail. Anything else i Google seems not to coincide with the way thematic does things. Any help would be greatly appreciated&#60;/p&#62;
&#60;p&#62;Thnx in advance.
&#60;/p&#62;</description>
</item>
<item>
<title>discofuel on "Correct way to set up custom post type archive for child theme?"</title>
<link>http://themeshaper.com/forums/topic/correct-way-to-set-up-custom-post-type-archive#post-25070</link>
<pubDate>Sun, 29 Jan 2012 21:04:01 +0000</pubDate>
<dc:creator>discofuel</dc:creator>
<guid isPermaLink="false">25070@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Can somebody please point me in the right direction on how to set up a custom post type archive page on a child theme of Thematic, and query for the custom post type.&#60;/p&#62;
&#60;p&#62;e.g. archive-customposttype.php&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
</item>
<item>
<title>McGirl2008 on "full post and then excerpts on category pages"</title>
<link>http://themeshaper.com/forums/topic/full-post-and-then-excerpts-on-category-pages#post-4418</link>
<pubDate>Mon, 08 Jun 2009 20:00:55 +0000</pubDate>
<dc:creator>McGirl2008</dc:creator>
<guid isPermaLink="false">4418@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;On my category pages, I want to show one full post and then the rest of the list as excerpts.&#60;/p&#62;
&#60;p&#62;I tried creating a variable which I called $full_content:&#60;/p&#62;
&#60;p&#62;// CHANGE WHAT GETS EXCERPTS&#60;br /&#62;
$full_content = false;&#60;br /&#62;
function childtheme_content($content) {&#60;br /&#62;
	if ($full_content) {&#60;br /&#62;
		$content= 'full';&#60;br /&#62;
	} elseif (is_home() &#124;&#124; is_front_page()) {&#60;br /&#62;
		$content= 'excerpt';&#60;br /&#62;
	} elseif (is_single()) {&#60;br /&#62;
		$content = 'full';&#60;br /&#62;
	} elseif (is_tag()) {&#60;br /&#62;
		$content = 'excerpt';&#60;br /&#62;
	} elseif (is_search()) {&#60;br /&#62;
		$content = 'excerpt';&#60;br /&#62;
	} elseif (is_category()) {&#60;br /&#62;
		$content = 'excerpt';&#60;br /&#62;
	} elseif (is_author()) {&#60;br /&#62;
		$content = 'excerpt';&#60;br /&#62;
	} elseif (is_archive()) {&#60;br /&#62;
		$content = 'excerpt';&#60;br /&#62;
	}&#60;br /&#62;
	return $content;&#60;br /&#62;
}&#60;br /&#62;
add_filter('thematic_content', 'childtheme_content');&#60;/p&#62;
&#60;p&#62;and then using that variable in the categoryloop:&#60;/p&#62;
&#60;p&#62;// The Category Pages&#60;br /&#62;
function childtheme_categoryloop() {&#60;br /&#62;
			$count = 0;&#60;br /&#62;
		while (have_posts()) : the_post();&#60;br /&#62;
			$count++;&#60;br /&#62;
			if ($count &#38;lt;= 1) { ?&#38;gt;&#60;br /&#62;
				&#38;lt;div id=&#34;post-&#38;lt;?php the_ID(); ?&#38;gt;&#34; class=&#34;&#38;lt;?php thematic_post_class(); ?&#38;gt;&#34;&#38;gt;&#60;br /&#62;
	    			&#38;lt;?php thematic_postheader(); ?&#38;gt;&#60;br /&#62;
					&#38;lt;div class=&#34;entry-content&#34;&#38;gt;&#60;br /&#62;
						&#38;lt;?php $full_content = true;&#60;br /&#62;
						thematic_content();&#60;br /&#62;
						$full_content = false; ?&#38;gt;&#60;br /&#62;
					&#38;lt;/div&#38;gt;&#60;br /&#62;
					&#38;lt;?php thematic_postfooter(); ?&#38;gt;&#60;br /&#62;
				&#38;lt;/div&#38;gt;&#38;lt;!-- .post --&#38;gt;&#60;br /&#62;
			&#38;lt;?php } else {&#60;br /&#62;
				 ?&#38;gt;&#60;br /&#62;
				&#38;lt;div id=&#34;post-&#38;lt;?php the_ID(); ?&#38;gt;&#34; class=&#34;&#38;lt;?php thematic_post_class(); ?&#38;gt;&#34;&#38;gt;&#60;br /&#62;
	    			&#38;lt;?php thematic_postheader(); ?&#38;gt;&#60;br /&#62;
					&#38;lt;div class=&#34;entry-content&#34;&#38;gt;&#60;br /&#62;
						&#38;lt;?php&#60;br /&#62;
						$full_content = false;&#60;br /&#62;
						thematic_content(); ?&#38;gt;&#60;br /&#62;
					&#38;lt;/div&#38;gt;&#60;br /&#62;
					&#38;lt;?php thematic_postfooter(); ?&#38;gt;&#60;br /&#62;
				&#38;lt;/div&#38;gt;&#38;lt;!-- .post --&#38;gt;&#60;br /&#62;
			&#38;lt;?php } ?&#38;gt;&#60;br /&#62;
		&#38;lt;?php endwhile;&#60;br /&#62;
		$full_content = false;&#60;br /&#62;
}&#60;br /&#62;
add_action('thematic_categoryloop', 'childtheme_categoryloop');&#60;/p&#62;
&#60;p&#62;I could see my changes to the loop, but no matter how I mess with this the category pages only show all-full, or all-excerpt. I have tested and the childtheme_categoryloop *can* definitely pull in different content for the if/else loop (if I use plaintext). &#60;/p&#62;
&#60;p&#62;Any help is VERY much appreciated!! Thanks!&#60;/p&#62;
&#60;p&#62;Michelle
&#60;/p&#62;</description>
</item>
<item>
<title>Chris on "Useful tools"</title>
<link>http://themeshaper.com/forums/topic/useful-tools#post-6931</link>
<pubDate>Mon, 05 Oct 2009 14:06:54 +0000</pubDate>
<dc:creator>Chris</dc:creator>
<guid isPermaLink="false">6931@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;this thread contains tools that we recommend for Theme / Child Theme development.&#60;/p&#62;
&#60;p&#62;Chris
&#60;/p&#62;</description>
</item>
<item>
<title>sixfootjames on "Better Thematic Help"</title>
<link>http://themeshaper.com/forums/topic/better-thematic-help#post-24278</link>
<pubDate>Tue, 13 Dec 2011 13:27:33 +0000</pubDate>
<dc:creator>sixfootjames</dc:creator>
<guid isPermaLink="false">24278@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi there,&#60;/p&#62;
&#60;p&#62;Not to be unappreciative; I am very grateful for the help but also quite frustrated. I know this is in large part due to my absolute Noobness at this and some day I will cringe upon this post.&#60;/p&#62;
&#60;p&#62;I am just finding it incredibly difficult to find what I am looking for and I have noticed others mention the same thing.&#60;/p&#62;
&#60;p&#62;I am more than willing to contribute to the Wiki as I learn as I believe this is a super way of adding in-depth articles on a subject and a lot of examples but the Wiki does not seem to be working?&#60;/p&#62;
&#60;p&#62;I see that there are lots of great articles that have been written in the forums but too much time is spent looking for these articles, when all that really needs to happen is if someone asks a question and it has been answered a thousand times, they should be pointed to the Wiki.&#60;/p&#62;
&#60;p&#62;Could we maybe get that up and running or is it limited to a certain number of people at this stage?&#60;/p&#62;
&#60;p&#62;I don't mean to whine, but if you look at this from a complete beginner's point of view you might understand the frustrations in the learning curve.&#60;/p&#62;
&#60;p&#62;I'd really like to make Thematic my choice of Framework and would like to wax it to the point where I can make a valuable contribution.&#60;/p&#62;
&#60;p&#62;Many thanks,&#60;br /&#62;
James
&#60;/p&#62;</description>
</item>
<item>
<title>tmayo on "Conditional Comments for IE"</title>
<link>http://themeshaper.com/forums/topic/conditional-comments-for-ie#post-11390</link>
<pubDate>Mon, 12 Apr 2010 14:45:05 +0000</pubDate>
<dc:creator>tmayo</dc:creator>
<guid isPermaLink="false">11390@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;where is the best place to insert conditional comments for IE version-specific CSS files?&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Tim
&#60;/p&#62;</description>
</item>

</channel>
</rss>

