<?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: Gallery</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Sat, 18 May 2013 15:13:48 +0000</pubDate>

<item>
<title>fwunder on "How are you using Thematic?"</title>
<link>http://themeshaper.com/forums/topic/how-are-you-using-thematic/page/9#post-27113</link>
<pubDate>Thu, 24 May 2012 13:52:46 +0000</pubDate>
<dc:creator>fwunder</dc:creator>
<guid isPermaLink="false">27113@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Ye olde eclectic antique shop. A fun Thematic diversion:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.rollingriverantiques.com/&#34; rel=&#34;nofollow&#34;&#62;http://www.rollingriverantiques.com/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;-fred
&#60;/p&#62;</description>
</item>
<item>
<title>sfrangos on "How are you using Thematic?"</title>
<link>http://themeshaper.com/forums/topic/how-are-you-using-thematic/page/9#post-27106</link>
<pubDate>Thu, 24 May 2012 00:30:02 +0000</pubDate>
<dc:creator>sfrangos</dc:creator>
<guid isPermaLink="false">27106@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi All -&#60;/p&#62;
&#60;p&#62;Love seeing your work here.  We just finished these sites based on thematic child themes:&#60;/p&#62;
&#60;p&#62;* Our new Agency site:  &#60;a href=&#34;http://Webdirexion.com&#34; rel=&#34;nofollow&#34;&#62;http://Webdirexion.com&#60;/a&#62;&#60;br /&#62;
* A site for an HVAC company:  &#60;a href=&#34;http://ainsworthac.com/&#34; rel=&#34;nofollow&#34;&#62;http://ainsworthac.com/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;We will be adding some of the sites you post here (and at the new home for Thematic as it celebrates version 1.0 release) in the Thematic showcase here:  &#60;a href=&#34;http://thematicmondo.com/directory/site-showcase/&#34; rel=&#34;nofollow&#34;&#62;http://thematicmondo.com/directory/site-showcase/&#60;/a&#62;  (Webdirexion runs this companion Thematic site as a way to thank and feature the community and their good work with Thematic).&#60;/p&#62;
&#60;p&#62;- Scott&#60;br /&#62;
&#60;a href=&#34;http://webdirexion.com&#34; rel=&#34;nofollow&#34;&#62;http://webdirexion.com&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>siguy on "How are you using Thematic?"</title>
<link>http://themeshaper.com/forums/topic/how-are-you-using-thematic/page/9#post-27055</link>
<pubDate>Fri, 18 May 2012 21:41:48 +0000</pubDate>
<dc:creator>siguy</dc:creator>
<guid isPermaLink="false">27055@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;It's done! (and moved to &#60;a href=&#34;http://zennkai.com&#34;&#62;zennkai.com&#60;/a&#62;)&#60;/p&#62;
&#60;p&#62;Along with the images that are inserted at thematic_abovecontent I am now also using a function to add some social media feeds that show next to the image on the home page and next to the content on the blog page.&#60;/p&#62;
&#60;p&#62;I played around with using an if statement to only show the block of feeds on the home and blog page but I guess I'm not familiar enough with WPs functions and failed at that so I simply insert them on each page load with display:none in the div's style attribute and override where I want them to actually show.&#60;/p&#62;
&#60;p&#62;It was done this way mainly because I had the social feeds working on just the home page without issue but I was asked very late into the project to add them to the blog page and I just did not have the time to do it properly at that point.&#60;/p&#62;
&#60;p&#62;If anybody want's more information or would like to see my ugly code, I would love to share more info :)
&#60;/p&#62;</description>
</item>
<item>
<title>siguy on "How are you using Thematic?"</title>
<link>http://themeshaper.com/forums/topic/how-are-you-using-thematic/page/9#post-26360</link>
<pubDate>Mon, 16 Apr 2012 04:55:17 +0000</pubDate>
<dc:creator>siguy</dc:creator>
<guid isPermaLink="false">26360@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hey guys, I'm using thematic again for the next in line for redesigns in the Megahair Salon's stable of brands, &#60;a href=&#34;http://www.zennkai.com&#34;&#62;Zennkai Salons&#60;/a&#62;. Currently the site is hosted here: &#60;a href=&#34;http://zenndev.bjb.ca&#34;&#62;http://zenndev.bjb.ca&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Each time I do this I learn something new and things get easier and more streamlined.&#60;/p&#62;
&#60;p&#62;Notable features this time are a more thorough use of hooks to add the extra nav and social links in the header and a more advanced hook to add an image before .entry-content on some pages. Here's what it looks like if anybody is interested in doing something similar:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// add support for an image that appears before the main content area.
// image in images folder named pg_$ID.gif will be put atop of page $ID
function precontent_image() {
	$imgloc = get_stylesheet_directory().&#38;#39;/images/pg_&#38;#39;.get_the_ID().&#38;#39;.gif&#38;#39;;
	$imgfile = get_bloginfo(&#38;#39;stylesheet_directory&#38;#39;).&#38;#39;/images/pg_&#38;#39;.get_the_ID().&#38;#39;.gif&#38;#39;;
	if (file_exists($imgloc)) { ?&#38;gt;
		&#38;lt;div id=&#38;quot;precontent-image&#38;quot;&#38;gt;&#38;lt;img src=&#38;quot;&#38;lt;?php echo $imgfile ?&#38;gt;&#38;quot;&#38;gt;&#38;lt;/div&#38;gt;
	&#38;lt;?php }
}
add_action(&#38;#39;thematic_abovecontent&#38;#39;, &#38;#39;precontent_image&#38;#39;);&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>Jagst3r15 on "How are you using Thematic?"</title>
<link>http://themeshaper.com/forums/topic/how-are-you-using-thematic/page/9#post-26153</link>
<pubDate>Wed, 04 Apr 2012 04:31:02 +0000</pubDate>
<dc:creator>Jagst3r15</dc:creator>
<guid isPermaLink="false">26153@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Thanks. I updated it and the Theme Options are now fully functional. Will be releasing a new theme soon too.
&#60;/p&#62;</description>
</item>
<item>
<title>robYardman on "How are you using Thematic?"</title>
<link>http://themeshaper.com/forums/topic/how-are-you-using-thematic/page/9#post-26147</link>
<pubDate>Tue, 03 Apr 2012 22:26:32 +0000</pubDate>
<dc:creator>robYardman</dc:creator>
<guid isPermaLink="false">26147@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hey nice work Jagst.
&#60;/p&#62;</description>
</item>
<item>
<title>Jagst3r15 on "How are you using Thematic?"</title>
<link>http://themeshaper.com/forums/topic/how-are-you-using-thematic/page/9#post-26013</link>
<pubDate>Mon, 19 Mar 2012 18:46:48 +0000</pubDate>
<dc:creator>Jagst3r15</dc:creator>
<guid isPermaLink="false">26013@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;New free child theme available here: &#60;a href=&#34;http://seamlessthemes.com/2012/03/19/standard-is-here-download-it-now/&#34; rel=&#34;nofollow&#34;&#62;http://seamlessthemes.com/2012/03/19/standard-is-here-download-it-now/&#60;/a&#62; . &#60;/p&#62;
&#60;p&#62;Features:&#60;/p&#62;
&#60;p&#62;A simple, yet elegant design&#60;br /&#62;
Theme options to change various css elements, including three different background patterns to choose from&#60;br /&#62;
A better and cleaner default gallery&#60;br /&#62;
HTML 5 support (note: still a work in progress)&#60;br /&#62;
Pre-customized Twitter widget and Contact Form 7&#60;br /&#62;
Yoast Breadcrumb support (must have plugin installed!)&#60;br /&#62;
GPL License – free to use and abuse&#60;/p&#62;
&#60;p&#62;Note: Theme Options is still out of date and under construction. Removed some features that may be a security risk so it is safe to use now (pretty much only allows css changes).
&#60;/p&#62;</description>
</item>
<item>
<title>hira2 on "How are you using Thematic?"</title>
<link>http://themeshaper.com/forums/topic/how-are-you-using-thematic/page/9#post-25938</link>
<pubDate>Thu, 15 Mar 2012 18:38:47 +0000</pubDate>
<dc:creator>hira2</dc:creator>
<guid isPermaLink="false">25938@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Not using it yet, but hope to in the future. In the meantime just checking out how bbPress looks.
&#60;/p&#62;</description>
</item>
<item>
<title>xxxevilgrinxxx on "How are you using Thematic?"</title>
<link>http://themeshaper.com/forums/topic/how-are-you-using-thematic/page/9#post-25935</link>
<pubDate>Thu, 15 Mar 2012 13:46:15 +0000</pubDate>
<dc:creator>xxxevilgrinxxx</dc:creator>
<guid isPermaLink="false">25935@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I've been using Thematic for a while (a child theme of Power Blog). When the 2011 theme (Duster sorta) came out, I switched for a bit. Sure it's pretty, but there's nothing quite like the nice clean look of thematic - that and not having a heart attack every time I check for errors!&#60;/p&#62;
&#60;p&#62;So it's back to my old love for me :)
&#60;/p&#62;</description>
</item>
<item>
<title>Jagst3r15 on "How are you using Thematic?"</title>
<link>http://themeshaper.com/forums/topic/how-are-you-using-thematic/page/9#post-25883</link>
<pubDate>Tue, 13 Mar 2012 02:23:41 +0000</pubDate>
<dc:creator>Jagst3r15</dc:creator>
<guid isPermaLink="false">25883@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I'll be releasing some brand new free and premium Thematic Child themes. Check out &#60;a href=&#34;http://www.seamlessthemes.com&#34; rel=&#34;nofollow&#34;&#62;http://www.seamlessthemes.com&#60;/a&#62; (site is still under construction, but just gonna unveil it now).
&#60;/p&#62;</description>
</item>
<item>
<title>robYardman on "How are you using Thematic?"</title>
<link>http://themeshaper.com/forums/topic/how-are-you-using-thematic/page/9#post-25538</link>
<pubDate>Wed, 22 Feb 2012 08:39:47 +0000</pubDate>
<dc:creator>robYardman</dc:creator>
<guid isPermaLink="false">25538@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi wlanni, I like them.&#60;/p&#62;
&#60;p&#62;I really appreciate your effort in breaking the standard thematic mold. Typically you can point out residual design elements from thematic based themes. I catch myself in that a lot. And it takes a lot of work to break those elements.&#60;/p&#62;
&#60;p&#62;It's the same with a lot of framework themes. You can typically tell the framework a website is based on. Thesis is another that is very typical in that.
&#60;/p&#62;</description>
</item>
<item>
<title>wlanni on "How are you using Thematic?"</title>
<link>http://themeshaper.com/forums/topic/how-are-you-using-thematic/page/9#post-25465</link>
<pubDate>Sun, 19 Feb 2012 00:53:04 +0000</pubDate>
<dc:creator>wlanni</dc:creator>
<guid isPermaLink="false">25465@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Recently developed two sites for a massive arts initiative in Los Angeles for the J. Paul Getty Trust (The Getty Museum) in Los Angeles. HEAVY customization, especially in creating custom post types, and organizing a massive cross database of items using Thematic on WordPress:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.getty.edu/pacificstandardtime&#34; rel=&#34;nofollow&#34;&#62;http://www.getty.edu/pacificstandardtime&#60;/a&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.pacificstandardtimefestival.org&#34; rel=&#34;nofollow&#34;&#62;http://www.pacificstandardtimefestival.org&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>robYardman on "How are you using Thematic?"</title>
<link>http://themeshaper.com/forums/topic/how-are-you-using-thematic/page/8#post-25221</link>
<pubDate>Tue, 07 Feb 2012 23:44:10 +0000</pubDate>
<dc:creator>robYardman</dc:creator>
<guid isPermaLink="false">25221@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Makes perfect sense. I was just curious the reasoning of using it.
&#60;/p&#62;</description>
</item>
<item>
<title>fwunder on "How are you using Thematic?"</title>
<link>http://themeshaper.com/forums/topic/how-are-you-using-thematic/page/8#post-25220</link>
<pubDate>Tue, 07 Feb 2012 22:32:29 +0000</pubDate>
<dc:creator>fwunder</dc:creator>
<guid isPermaLink="false">25220@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;@robYardman&#60;/p&#62;
&#60;p&#62;Compass/SASS is not a replacement for Thematic's excellent native style structures. It's not CSS - It's a tool for helping to create CSS - A CSS framework. The variables, math functions, mixens, etc. speed the process and (for me) just makes sense. I was struggling with an efficient way to create something like this:  &#60;a href=&#34;http://grafiks101.com/dev/just-for-fun/&#34; rel=&#34;nofollow&#34;&#62;http://grafiks101.com/dev/just-for-fun/&#60;/a&#62;  for a project I was working on. The supplied 3c-fixed.css may have been a better way to go, but I was already a little familiar with the method I used and Compass/SASS (and Thematic)  made it relatively easy to develop.&#60;/p&#62;
&#60;p&#62;I hope that makes sense.
&#60;/p&#62;</description>
</item>
<item>
<title>robYardman on "How are you using Thematic?"</title>
<link>http://themeshaper.com/forums/topic/how-are-you-using-thematic/page/8#post-25217</link>
<pubDate>Tue, 07 Feb 2012 19:31:07 +0000</pubDate>
<dc:creator>robYardman</dc:creator>
<guid isPermaLink="false">25217@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;@fwunder&#60;/p&#62;
&#60;p&#62;What does Compass offer over Thematic's native column structuring?
&#60;/p&#62;</description>
</item>
<item>
<title>fwunder on "How are you using Thematic?"</title>
<link>http://themeshaper.com/forums/topic/how-are-you-using-thematic/page/8#post-25181</link>
<pubDate>Sat, 04 Feb 2012 15:38:15 +0000</pubDate>
<dc:creator>fwunder</dc:creator>
<guid isPermaLink="false">25181@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;For me....Thematic and this community have proven to be invaluable sources. I've learned more than I thought I didn't know!&#60;/p&#62;
&#60;p&#62;A little sandbox project I decided to tackle a couple of days ago would have been a real struggle for me a month or two ago.&#60;/p&#62;
&#60;p&#62;This may (or may not) help others.  It might help me too if you tell me I'm crazy and did it all wrong! ;) Compass, SASS and Thematic. I'm a believer!&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://grafiks101.com/dev/&#34; rel=&#34;nofollow&#34;&#62;http://grafiks101.com/dev/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>memzoomvn on "How are you using Thematic?"</title>
<link>http://themeshaper.com/forums/topic/how-are-you-using-thematic/page/8#post-25176</link>
<pubDate>Sat, 04 Feb 2012 03:19:50 +0000</pubDate>
<dc:creator>memzoomvn</dc:creator>
<guid isPermaLink="false">25176@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I think the problem rests with the asides styling. I seem to be able to highlight everything properly, but I'll take a look at it in a bit to see if I can fix anything.like &#60;a href=&#34;http://langtham.com.vn&#34; rel=&#34;nofollow&#34;&#62;http://langtham.com.vn&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>robYardman on "How are you using Thematic?"</title>
<link>http://themeshaper.com/forums/topic/how-are-you-using-thematic/page/8#post-25132</link>
<pubDate>Tue, 31 Jan 2012 14:28:49 +0000</pubDate>
<dc:creator>robYardman</dc:creator>
<guid isPermaLink="false">25132@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Another great website made possible by Thematic:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.harrymontoyaforcongress.com/&#34; rel=&#34;nofollow&#34;&#62;http://www.harrymontoyaforcongress.com/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking 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-25102</link>
<pubDate>Mon, 30 Jan 2012 22:47:28 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">25102@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;it is my username at gmail
&#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-25099</link>
<pubDate>Mon, 30 Jan 2012 21:59:51 +0000</pubDate>
<dc:creator>asimkhan12</dc:creator>
<guid isPermaLink="false">25099@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Can I have your email so i can contact you for further information and stuff?
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking 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-25097</link>
<pubDate>Mon, 30 Jan 2012 21:10:17 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">25097@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;sorry man, i don't totally understand your question, but it sounds like you will want create your own tag.php.... except that i just looked at the code and tag pages appear to all use the same loop (with thumbnails) as the homepage.  &#60;/p&#62;
&#60;p&#62;i just don't know enough about gallery to easily answer...  and don't have time to do all your work for you for free.  if you are not a developer then you might want to consider hiring one?  sometimes it is worth saving the hassle.
&#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-25095</link>
<pubDate>Mon, 30 Jan 2012 20:49:36 +0000</pubDate>
<dc:creator>asimkhan12</dc:creator>
<guid isPermaLink="false">25095@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Thanks Thanks million to you. Finally it works properly just like i wanted it. Thank You for you help. &#60;/p&#62;
&#60;p&#62;I really appreciate your support forum here. However, as I said it was much easier for you people but not for me as I am not a developer just learning by reading guides and so. Anyway Thanks.&#60;/p&#62;
&#60;p&#62;Lastly, I want to know from where I can re-design and customize these &#34;Tag Post&#34; pages. Just like i want them (Tag Post Pages) similar to the homepage. So whenever any body clicks on a particular tag post it will open just like main page of Gallery theme with related to those tags. I hope I made myself clear. For more info, you can reply. &#60;/p&#62;
&#60;p&#62;Thanks. :)
&#60;/p&#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-25089</link>
<pubDate>Mon, 30 Jan 2012 16:49:15 +0000</pubDate>
<dc:creator>tabasco</dc:creator>
<guid isPermaLink="false">25089@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Thank you for the response Helga, i will take a look at this.
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Grid style layout for pages list"</title>
<link>http://themeshaper.com/forums/topic/grid-style-layout-for-pages-list#post-25087</link>
<pubDate>Mon, 30 Jan 2012 15:11:18 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">25087@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;you're going to have to learn some code to create a custom loop that you can then style. &#60;/p&#62;
&#60;p&#62;this code is a bit outdated and it isn't exactly what you need, but is a good example of the type of loop markup you'd need and can be adapted to your purposes&#60;br /&#62;
&#60;a href=&#34;http://hardiannazief.com/12/create-custom-posts-layout-in-home-page-thematic-child-theme/&#34; rel=&#34;nofollow&#34;&#62;http://hardiannazief.com/12/create-custom-posts-layout-in-home-page-thematic-child-theme/&#60;/a&#62;
&#60;/p&#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>Dominor Novus on "How are you using Thematic?"</title>
<link>http://themeshaper.com/forums/topic/how-are-you-using-thematic/page/8#post-25065</link>
<pubDate>Sat, 28 Jan 2012 20:56:56 +0000</pubDate>
<dc:creator>Dominor Novus</dc:creator>
<guid isPermaLink="false">25065@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;@jmastrom: I've gone through a similar process of finding the Holy Grail of all themes. My search ended when I found the Thematic framework.&#60;/p&#62;
&#60;p&#62;Just make sure you're using a child theme and NEVER editing the core WordPress or Thematic files. This rule of thumb is for &#60;em&#62;your&#60;/em&#62; benefit. &#60;/p&#62;
&#60;p&#62;From what I can see, you're using Thematic as your actual theme. As a result, every time you upgrade Thematic, all your modified code will be overwritten. &#60;/p&#62;
&#60;p&#62;See here: &#60;a href=&#34;http://www.catswhocode.com/blog/wordpress-how-to-easily-create-a-thematic-child-theme&#34; rel=&#34;nofollow&#34;&#62;http://www.catswhocode.com/blog/wordpress-how-to-easily-create-a-thematic-child-theme&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Post back once you've made progress with your design.
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking 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-25059</link>
<pubDate>Sat, 28 Jan 2012 00:50:12 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">25059@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;there is plenty of info on google about how to get the tags. it is right in the codex:&#60;br /&#62;
&#60;a href=&#34;http://codex.wordpress.org/Function_Reference/get_the_tag_list&#34; rel=&#34;nofollow&#34;&#62;http://codex.wordpress.org/Function_Reference/get_the_tag_list&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;but you haven't posted much of anything that would help us help you with gallery.  did you try the &#60;a href=&#34;http://upthemes.com/forum/&#34; rel=&#34;nofollow&#34;&#62;http://upthemes.com/forum/&#60;/a&#62; forums at all?  since they are the ones distributing the theme.  &#60;/p&#62;
&#60;p&#62;assuming that the version available for download is what you are using (which i have no idea if it is b/c i just downloaded it and i don't see Usability and Appreciations in my meta), then my previous suggestion to filter the thematic_postheader_postmeta() does not apply has gallery has remove the default single post and replaced it with its own version.  &#60;/p&#62;
&#60;p&#62;again on the assumption that your gallery is the same as mine:&#60;/p&#62;
&#60;p&#62;go into functions.php and find the &#60;strong&#62;add_metadata_to_post&#60;/strong&#62; function and add a line for your new tags function&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;// add meta data to the post
function add_metadata_to_post( $content ){

	$content .= &#38;#39;&#38;lt;ul class=&#38;quot;meta&#38;quot;&#38;gt;&#38;#39;;
	$content .= add_twitter_to_meta();
	$content .= add_designer_to_meta();
	$content .= add_weburl_to_meta();
	$content .= add_tags_to_meta();  //added this
	$content .= &#38;#39;&#38;lt;/ul&#38;gt;&#38;#39;;

	return $content;

}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;then somewhere in functions.php add&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// add the tags to the meta data
function add_tags_to_meta(){
	if(get_the_tag_list()) {
		return get_the_tag_list(&#38;#39;&#38;lt;li class=&#38;quot;post-tags&#38;quot;&#38;gt;Tags: &#38;#39;,&#38;#39;, &#38;#39;,&#38;#39;&#38;lt;/li&#38;gt;&#38;#39;);
	}
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;this will produce a tag list.
&#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-25058</link>
<pubDate>Sat, 28 Jan 2012 00:04:40 +0000</pubDate>
<dc:creator>asimkhan12</dc:creator>
<guid isPermaLink="false">25058@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;it's been three days since i am figuring out this post meta thing but unfortunately no success.
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking 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-25017</link>
<pubDate>Tue, 24 Jan 2012 17:20:02 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">25017@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;if chris isn't filtering thematic_postheader_postmeta then you will have to do it yourself.  &#60;/p&#62;
&#60;p&#62;here is an explanation i wrote about filters&#60;br /&#62;
&#60;a href=&#34;http://themeshaper.com/forums/topic/need-help-understanding-actions-vs-filters-and-changing-post-meta-and-utility#post-22638&#34; rel=&#34;nofollow&#34;&#62;http://themeshaper.com/forums/topic/need-help-understanding-actions-vs-filters-and-changing-post-meta-and-utility#post-22638&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>jmastrom on "How are you using Thematic?"</title>
<link>http://themeshaper.com/forums/topic/how-are-you-using-thematic/page/8#post-25011</link>
<pubDate>Mon, 23 Jan 2012 21:50:31 +0000</pubDate>
<dc:creator>jmastrom</dc:creator>
<guid isPermaLink="false">25011@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Howdy!&#60;/p&#62;
&#60;p&#62;I am making my first serious foray into Wordpress.  I think Wordpress seriosly rocks.&#60;/p&#62;
&#60;p&#62;Anyway, I started a site &#60;a href=&#34;http://www.wptutorialseo.com,&#34; rel=&#34;nofollow&#34;&#62;http://www.wptutorialseo.com,&#60;/a&#62; and planned on using the site to blog about Wordpress mods and plugins, as well as SEO.&#60;/p&#62;
&#60;p&#62;For the last few days I have been suffering theme paralysis/overload.  I have seen so many themes, and frameworks, that my eyes glaxed over, so I had to stop for some gin.  I have been drinking too much gin.&#60;/p&#62;
&#60;p&#62;I recalled that one of my wrox books (I am not buying anymore of them, but that is another story) mentioned some frameworks.  After trying Sandbox (way too basic), and a couple of others, I decided to try thematic.  So far so good.&#60;/p&#62;
&#60;p&#62;So... after a long winded psedo-explanation here is what I hope to do with thematic:&#60;br /&#62;
Mod it like a wild horse.  Of course, I am a noob, and a bit of a hack.. but what the heck.  I can do PHP/MySQL, and it looks like the community here is &#34;goldilocks&#34; )not to big, not too small.  So hopefully I can help you all out while I partake in your knowledge and experience.&#60;/p&#62;
&#60;p&#62;Peace&#60;br /&#62;
Joe
&#60;/p&#62;</description>
</item>

</channel>
</rss>
