<?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: options</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Mon, 20 May 2013 05:47:00 +0000</pubDate>

<item>
<title>helgatheviking on "customizing manual excerpt"</title>
<link>http://themeshaper.com/forums/topic/customizing-manual-excerpt#post-20715</link>
<pubDate>Wed, 20 Apr 2011 02:00:42 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">20715@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;maybe something here will help:&#60;br /&#62;
&#60;a href=&#34;http://themeshaper.com/forums/topic/how-to-make-excerpts-roll-over-and-say-uncle&#34; rel=&#34;nofollow&#34;&#62;http://themeshaper.com/forums/topic/how-to-make-excerpts-roll-over-and-say-uncle&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>AnotherAndrew on "customizing manual excerpt"</title>
<link>http://themeshaper.com/forums/topic/customizing-manual-excerpt#post-20714</link>
<pubDate>Wed, 20 Apr 2011 01:28:30 +0000</pubDate>
<dc:creator>AnotherAndrew</dc:creator>
<guid isPermaLink="false">20714@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I have been scouring the net for some ideas, and banging out some code, but have come up to a wall trying to figure this one out. &#60;/p&#62;
&#60;p&#62;And starting to think this is beyond WP's functionality!&#60;/p&#62;
&#60;p&#62;I want users to be able to specify a manual excerpt in the post editor, and allow them to include html tags such as an image, and link.&#60;/p&#62;
&#60;p&#62;So far, I have been able to set automatic excerpts to allow for html tags through this&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;// ALLOW html tags in excerpts
function improved_trim_excerpt($text) {
	global $post;
	if ( &#38;#39;&#38;#39; == $text ) {
		$text = get_the_content(&#38;#39;&#38;#39;);
		$text = apply_filters(&#38;#39;the_content&#38;#39;, $text);
		$text = str_replace(&#38;#39;]]&#38;gt;&#38;#39;, &#38;#39;]]&#38;gt;&#38;#39;, $text);
		$text = preg_replace(&#38;#39;@&#38;lt;script[^&#38;gt;]*?&#38;gt;.*?&#38;lt;/script&#38;gt;@si&#38;#39;, &#38;#39;&#38;#39;, $text);
		$text = strip_tags($text, &#38;#39;&#38;lt;img&#38;gt;&#38;lt;span&#38;gt;&#38;lt;a&#38;gt;&#38;#39;);
		$excerpt_length = 90;
		$words = explode(&#38;#39; &#38;#39;, $text, $excerpt_length + 5);
		if (count($words)&#38;gt; $excerpt_length) {
			array_pop($words);
			array_push($words, &#38;#39;[...]&#38;#39;);
			$text = implode(&#38;#39; &#38;#39;, $words);
		}
	}
	return $text;
}

remove_filter(&#38;#39;get_the_excerpt&#38;#39;, &#38;#39;wp_trim_excerpt&#38;#39;);
add_filter(&#38;#39;get_the_excerpt&#38;#39;, &#38;#39;improved_trim_excerpt&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;But for manual excerpt customizing, I can only seem to allow an add a &#34;read more&#34; link text through this&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;add_filter(&#38;#39;get_the_excerpt&#38;#39;, &#38;#39;manual_excerpt_more&#38;#39;);
function manual_excerpt_more($excerpt) {
	$excerpt_more = &#38;#39;&#38;#39;;
	if( has_excerpt() ) {
    	$excerpt_more = &#38;#39; &#38;lt;a href=&#38;quot;&#38;#39;.get_permalink().&#38;#39;&#38;quot; rel=&#38;quot;nofollow&#38;quot;&#38;gt;...continue reading&#38;lt;/a&#38;gt;&#38;#39;;
		$excerpt_more = strip_tags($excerpt_more, &#38;#39;&#38;lt;img&#38;gt;&#38;lt;span&#38;gt;&#38;lt;a&#38;gt;&#38;#39;);
	}
	return $excerpt . $excerpt_more;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;As you can see I tried to add in html tags with &#60;code&#62;$excerpt_more = strip_tags($excerpt_more, &#38;#39;&#38;lt;p&#38;gt;&#38;lt;img&#38;gt;&#38;lt;span&#38;gt;&#38;lt;a&#38;gt;&#38;#39;);&#60;/code&#62; but this does not seem to work.&#60;/p&#62;
&#60;p&#62;Anyone have suggestions?
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Customizing Menu from the Dashboard"</title>
<link>http://themeshaper.com/forums/topic/customizing-menu-from-the-dashboard#post-10771</link>
<pubDate>Wed, 17 Mar 2010 03:34:29 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">10771@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;yeah i saw that was in the pipeline for WP3.0 the day after I had posted.  I guess there is no point in developing this custom code when it is on its way in the core.  I can't wait.
&#60;/p&#62;</description>
</item>
<item>
<title>em hr on "Customizing Menu from the Dashboard"</title>
<link>http://themeshaper.com/forums/topic/customizing-menu-from-the-dashboard#post-10757</link>
<pubDate>Tue, 16 Mar 2010 03:59:24 +0000</pubDate>
<dc:creator>em hr</dc:creator>
<guid isPermaLink="false">10757@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi helgatheviking,&#60;/p&#62;
&#60;p&#62;This functionality is being built into the WP core with WP version 3.0. Look to this thread where this is also being discussed.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://themeshaper.com/forums/topic/menus-and-wp3&#34; rel=&#34;nofollow&#34;&#62;http://themeshaper.com/forums/topic/menus-and-wp3&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;-Gene
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Customizing Menu from the Dashboard"</title>
<link>http://themeshaper.com/forums/topic/customizing-menu-from-the-dashboard#post-10710</link>
<pubDate>Sun, 14 Mar 2010 19:33:39 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">10710@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;has anyone written a function that would allow for the setup of a menu (what pages are included) from within the WP dashboard?   being able to specify the menu w/o having to go into the code would be great.  &#60;/p&#62;
&#60;p&#62;I envision it as another section on the &#34;Thematic Options&#34; page.  Maybe just a list of pages with a checkbox next to them... check the ones you want to show up in the menu.
&#60;/p&#62;</description>
</item>
<item>
<title>Chris on "MU Merging with WP 3/Child Theme Options"</title>
<link>http://themeshaper.com/forums/topic/mu-merging-with-wp-3child-theme-options#post-10018</link>
<pubDate>Sun, 21 Feb 2010 20:53:53 +0000</pubDate>
<dc:creator>Chris</dc:creator>
<guid isPermaLink="false">10018@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi Scott,&#60;/p&#62;
&#60;p&#62;we will support the MU part of WordPress 3.0. Each blog will be able to run the same child theme but with different options. I'll integrate an option to enable / disable setting changes.&#60;/p&#62;
&#60;p&#62;The plugin thing is cancelled. I'm working on an options page that can be controlled / extended by child theme authors.&#60;/p&#62;
&#60;p&#62;I'm sure that we'll have something to play with in the next weeks. And we'll have a real beta cycle for the first time.&#60;/p&#62;
&#60;p&#62;Chris
&#60;/p&#62;</description>
</item>
<item>
<title>sfrangos on "MU Merging with WP 3/Child Theme Options"</title>
<link>http://themeshaper.com/forums/topic/mu-merging-with-wp-3child-theme-options#post-9999</link>
<pubDate>Sat, 20 Feb 2010 17:44:05 +0000</pubDate>
<dc:creator>sfrangos</dc:creator>
<guid isPermaLink="false">9999@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hello Colleagues -&#60;/p&#62;
&#60;p&#62;Thanks again to the Thematic Framework developers and supporters -- you're great.  Hey... I say again -- post a donation link and I will go immediately and send you some $.&#60;/p&#62;
&#60;p&#62;I want to ask all for your thoughts on the MU merger with WP 3.0 this April, and ask a question about child theme options.  First, here's a look at a recent we built on the Thematic Framework:  &#60;a href=&#34;http://www.ignitionmsp.com&#34;&#62;IgnitionMSP.com&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;&#60;strong&#62;MU Merging into WP3&#60;/strong&#62;:  Heard about it?  Do we know yet what changes will be required to themes, and when Thematic will be upgraded? &#60;/p&#62;
&#60;p&#62;&#60;strong&#62;Multiple Child Themes for Separate Blogs in WP 3.0 (as in MU now):&#60;/strong&#62;  If we have theme options for children built with custom functions in a child theme, and one of them, for example, is the ability to upload an image for a header, how does that play out for each blog wishing to use a different image for a header?  Does it require a brand new child theme for each new blog, or will the same child theme &#34;know&#34; how to save a different specific header image as called for a blog?&#60;/p&#62;
&#60;p&#62;By the way... I have heard a rumor that Chris is planning a special plugin for a killer child theme options page in admin.  When is it coming, and will it play well with multiple blogs in the new WP 3.0?&#60;/p&#62;
&#60;p&#62;Cheers to All -&#60;br /&#62;
Scott&#60;br /&#62;
WebFadds.com
&#60;/p&#62;</description>
</item>
<item>
<title>cehwitham on "Adding Options for Child Theme"</title>
<link>http://themeshaper.com/forums/topic/adding-options-for-child-theme#post-9324</link>
<pubDate>Sat, 30 Jan 2010 07:52:18 +0000</pubDate>
<dc:creator>cehwitham</dc:creator>
<guid isPermaLink="false">9324@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I just added my own options to the options page by editing thematic/library/extensions/theme-options.php.&#60;/p&#62;
&#60;p&#62;Just copy on of the items in the array at the top of the page and change accordingly.&#60;/p&#62;
&#60;p&#62;My only issue with this method is that it changes core thematic files breaking the separation of the child theme.&#60;/p&#62;
&#60;p&#62;Chris
&#60;/p&#62;</description>
</item>
<item>
<title>bigdaddywhale on "This may be a stupid newbie question, but....."</title>
<link>http://themeshaper.com/forums/topic/this-may-be-a-stupid-newbie-question-but#post-4107</link>
<pubDate>Wed, 27 May 2009 15:09:27 +0000</pubDate>
<dc:creator>bigdaddywhale</dc:creator>
<guid isPermaLink="false">4107@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Manuel &#38;#38; Jamie, Thanks for your contributions. I will now close this thread and open up another one when i am going round in circles. I am going to give it a go. Wish me luck.
&#60;/p&#62;</description>
</item>
<item>
<title>Manuel on "This may be a stupid newbie question, but....."</title>
<link>http://themeshaper.com/forums/topic/this-may-be-a-stupid-newbie-question-but#post-4105</link>
<pubDate>Wed, 27 May 2009 13:57:10 +0000</pubDate>
<dc:creator>Manuel</dc:creator>
<guid isPermaLink="false">4105@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;The widgets you have downloaded are probably, most certainly, plugins (plugins with the functionality to add widgets). &#60;/p&#62;
&#60;p&#62;So you upload those plugins to your plugins directory, activate them under /wp-admin/plugins.php, and then drag those new widgets to your desired widget area under /wp-admin/widgets.php&#60;/p&#62;
&#60;p&#62;If you would like to have different widgets appear on different pages, then this plugin is for you: &#60;a href=&#34;http://www.thaslayer.com/2008/10/16/wordpress-plugin-slayers-custom-widgets-v-10/&#34; rel=&#34;nofollow&#34;&#62;http://www.thaslayer.com/2008/10/16/wordpress-plugin-slayers-custom-widgets-v-10/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;The rest is up to you. :)
&#60;/p&#62;</description>
</item>
<item>
<title>bigdaddywhale on "This may be a stupid newbie question, but....."</title>
<link>http://themeshaper.com/forums/topic/this-may-be-a-stupid-newbie-question-but#post-4104</link>
<pubDate>Wed, 27 May 2009 13:15:43 +0000</pubDate>
<dc:creator>bigdaddywhale</dc:creator>
<guid isPermaLink="false">4104@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Thanks guys, i guess there is one way to learn right. &#60;/p&#62;
&#60;p&#62;I am loving the power blog look. What i would love is a page where the front is static with the extra widgets under the banner then a side bar on the right with widgets. on the blog pages i would like to have different widgets appear.&#60;/p&#62;
&#60;p&#62;For Example: front page a calendar of upcoming events. RSS links etc. Then on the blog page have the Catagories etc.&#60;/p&#62;
&#60;p&#62;If i have downloaded widgets from WP do i have to code them into the site or will WP control panel do this for me?
&#60;/p&#62;</description>
</item>
<item>
<title>Manuel on "This may be a stupid newbie question, but....."</title>
<link>http://themeshaper.com/forums/topic/this-may-be-a-stupid-newbie-question-but#post-4097</link>
<pubDate>Wed, 27 May 2009 08:48:10 +0000</pubDate>
<dc:creator>Manuel</dc:creator>
<guid isPermaLink="false">4097@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;There is a Thematic Configuration Plugin in the works (http://www.wupperpiraten.de/2009/05/thematic-configuration-plugin/), but i guess it is not targeted to be as comprehensive as the wpunlimited one.&#60;/p&#62;
&#60;p&#62;But if you are new to all of this CSS stuff, like I am, then Thematic, with its build in and pre-configurized child theme and its outstanding documentation (http://themeshaper.com/modify-wordpress-themes/) might be the best way to dive into CSS and WP theme design.&#60;/p&#62;
&#60;p&#62;Like Jamie Mitchell said: it is free, just give it a try. :)
&#60;/p&#62;</description>
</item>
<item>
<title>Jamie Mitchell on "This may be a stupid newbie question, but....."</title>
<link>http://themeshaper.com/forums/topic/this-may-be-a-stupid-newbie-question-but#post-4096</link>
<pubDate>Wed, 27 May 2009 06:01:39 +0000</pubDate>
<dc:creator>Jamie Mitchell</dc:creator>
<guid isPermaLink="false">4096@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;hey mate...&#60;/p&#62;
&#60;p&#62;i guess thematic is more targeted towards developers, i mean in order to turn it into a unique theme (or build a unique child theme )you certainly need to know css, but not necessarily php unless you really start to customize.&#60;/p&#62;
&#60;p&#62;no you can't just customize the thematic in wp options.&#60;/p&#62;
&#60;p&#62;thematic is free, so why not just give it a go, play around with it and if it does not work out you have lost nothing.&#60;/p&#62;
&#60;p&#62;there are also heaps of awesome free child themes on themeshaper, so grab one of those too and you've got everything you need.&#60;/p&#62;
&#60;p&#62;if all this sounds too much to dive into , then definitely go with a bought theme that is exactly what you want, or perhaps pay somebody to customize thematic for you...&#60;/p&#62;
&#60;p&#62;i guess it depends a lot on the purpose of the theme, what sort of site will it be for.
&#60;/p&#62;</description>
</item>
<item>
<title>bigdaddywhale on "This may be a stupid newbie question, but....."</title>
<link>http://themeshaper.com/forums/topic/this-may-be-a-stupid-newbie-question-but#post-4087</link>
<pubDate>Tue, 26 May 2009 15:40:39 +0000</pubDate>
<dc:creator>bigdaddywhale</dc:creator>
<guid isPermaLink="false">4087@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I have come across a few templates that look brilliant, but nothing that gives as much as Thematic. However, am i right in saying this is all about programming .php or even .css? I have found themes such as &#60;a href=&#34;http://www.wpunlimited.com/&#34; rel=&#34;nofollow&#34;&#62;http://www.wpunlimited.com/&#60;/a&#62; that can be customised in the WP Option pages is that the case for thematic as well? If it is then i think this is the one for me, but if not, having followed a few threads in the forum with the answers all given in code i don't think this will be for me. If someone can point me in the right direction i would be most grateful.
&#60;/p&#62;</description>
</item>
<item>
<title>Chris on "Adding Options for Child Theme"</title>
<link>http://themeshaper.com/forums/topic/adding-options-for-child-theme#post-1782</link>
<pubDate>Mon, 23 Feb 2009 08:43:31 +0000</pubDate>
<dc:creator>Chris</dc:creator>
<guid isPermaLink="false">1782@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hey Björn,&#60;/p&#62;
&#60;p&#62;I don't think that this is possible with the current version of Thematic. And I doubt that it'll be in future versions. &#60;/p&#62;
&#60;p&#62;Personally I vote +100 for dropping the current options page. Everything listed on this page could be done using filters.&#60;/p&#62;
&#60;p&#62;In case that there's a real need for a child theme you're developing, create your own options page.&#60;/p&#62;
&#60;p&#62;Anyway .. the final decision is made by Ian. &#60;/p&#62;
&#60;p&#62;Cheers,&#60;/p&#62;
&#60;p&#62;Chris
&#60;/p&#62;</description>
</item>
<item>
<title>micahcooksey on "Adding Options for Child Theme"</title>
<link>http://themeshaper.com/forums/topic/adding-options-for-child-theme#post-1770</link>
<pubDate>Sun, 22 Feb 2009 04:14:23 +0000</pubDate>
<dc:creator>micahcooksey</dc:creator>
<guid isPermaLink="false">1770@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi, I could be wrong, but It seems like you would have to edit the php file that dictates what options appear.&#60;/p&#62;
&#60;p&#62;Hope that helps,&#60;/p&#62;
&#60;p&#62;Micah Cooksey
&#60;/p&#62;</description>
</item>
<item>
<title>Anthrax on "Adding Options for Child Theme"</title>
<link>http://themeshaper.com/forums/topic/adding-options-for-child-theme#post-1750</link>
<pubDate>Thu, 19 Feb 2009 06:43:12 +0000</pubDate>
<dc:creator>Anthrax</dc:creator>
<guid isPermaLink="false">1750@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Is it possible to adding my own Options for a Child-Theme in the Thematic-Options Page?
&#60;/p&#62;</description>
</item>
<item>
<title>Ian Stewart on "Creative Commons License"</title>
<link>http://themeshaper.com/forums/topic/creative-commons-license#post-944</link>
<pubDate>Sat, 01 Nov 2008 12:47:31 +0000</pubDate>
<dc:creator>Ian Stewart</dc:creator>
<guid isPermaLink="false">944@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;You should be able to do this in the Thematic Options in the footer text.&#60;/p&#62;
&#60;p&#62;(And a to do list is a good idea.)
&#60;/p&#62;</description>
</item>
<item>
<title>mkalina on "Creative Commons License"</title>
<link>http://themeshaper.com/forums/topic/creative-commons-license#post-935</link>
<pubDate>Wed, 29 Oct 2008 08:47:59 +0000</pubDate>
<dc:creator>mkalina</dc:creator>
<guid isPermaLink="false">935@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Since ThemeShaper supports some plugins, I thought perhaps support for a CC-license would also be nice. Another option &#34;Show CC-License&#34; with a checkbox would make it perfectly easy: If the checkbox is checked and the user filled in the URL of his or her relevant license, the thematic post-footer would also include a small CC-button or simply a CC-text with a link to the license. I think even the letters &#34;CC&#34; would be enough...&#60;/p&#62;
&#60;p&#62;Especially for use as a CMS this option would be of great help!&#60;/p&#62;
&#60;p&#62;(BTW: Is there something like a todo-list where one can have a look before posting suggestions?)
&#60;/p&#62;</description>
</item>
<item>
<title>Ian Stewart on "Theme Option Request: Deactivate Sliding Panel"</title>
<link>http://themeshaper.com/forums/topic/theme-option-request-deactivate-sliding-panel#post-349</link>
<pubDate>Wed, 13 Aug 2008 04:41:26 +0000</pubDate>
<dc:creator>Ian Stewart</dc:creator>
<guid isPermaLink="false">349@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Removed it in trunk and future versions of Thematic.&#60;/p&#62;
&#60;p&#62;Rest in peace, sliding-meta-panel-thingy.
&#60;/p&#62;</description>
</item>
<item>
<title>Ian Stewart on "Theme Option Request: Deactivate Sliding Panel"</title>
<link>http://themeshaper.com/forums/topic/theme-option-request-deactivate-sliding-panel#post-235</link>
<pubDate>Fri, 08 Aug 2008 23:27:49 +0000</pubDate>
<dc:creator>Ian Stewart</dc:creator>
<guid isPermaLink="false">235@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I think so. The jQuery is called in the recommended fashion so … fingers crossed? I still have to figure out what's up with WP-Ajaxed though. We'll see.
&#60;/p&#62;</description>
</item>
<item>
<title>CircleReader on "Theme Option Request: Deactivate Sliding Panel"</title>
<link>http://themeshaper.com/forums/topic/theme-option-request-deactivate-sliding-panel#post-233</link>
<pubDate>Fri, 08 Aug 2008 22:48:35 +0000</pubDate>
<dc:creator>CircleReader</dc:creator>
<guid isPermaLink="false">233@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I'm not a php/javascript coder, so I'm not really sure how the gears mesh. Does that solution deal with potential plugin conflicts?
&#60;/p&#62;</description>
</item>
<item>
<title>Ian Stewart on "Theme Option Request: Deactivate Sliding Panel"</title>
<link>http://themeshaper.com/forums/topic/theme-option-request-deactivate-sliding-panel#post-223</link>
<pubDate>Fri, 08 Aug 2008 19:35:28 +0000</pubDate>
<dc:creator>Ian Stewart</dc:creator>
<guid isPermaLink="false">223@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I'll leave it in then. No option to remove. If you want to remove it, {display:none;}.
&#60;/p&#62;</description>
</item>
<item>
<title>patdryburgh on "Theme Option Request: Deactivate Sliding Panel"</title>
<link>http://themeshaper.com/forums/topic/theme-option-request-deactivate-sliding-panel#post-222</link>
<pubDate>Fri, 08 Aug 2008 19:29:09 +0000</pubDate>
<dc:creator>patdryburgh</dc:creator>
<guid isPermaLink="false">222@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;What's wrong with the display: none solution? It's easy to implement, and anyone can do it. &#60;/p&#62;
&#60;p&#62;Plus, I had planned to style mine, so that the public release of my theme has a styled version to match my child theme!
&#60;/p&#62;</description>
</item>
<item>
<title>Ian Stewart on "Theme Option Request: Deactivate Sliding Panel"</title>
<link>http://themeshaper.com/forums/topic/theme-option-request-deactivate-sliding-panel#post-209</link>
<pubDate>Fri, 08 Aug 2008 12:05:24 +0000</pubDate>
<dc:creator>Ian Stewart</dc:creator>
<guid isPermaLink="false">209@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I'm still thinking about this. Would anyone care if I went and removed it totally?
&#60;/p&#62;</description>
</item>
<item>
<title>Ian Stewart on "Theme Option Request: Deactivate Sliding Panel"</title>
<link>http://themeshaper.com/forums/topic/theme-option-request-deactivate-sliding-panel#post-160</link>
<pubDate>Sun, 03 Aug 2008 01:13:29 +0000</pubDate>
<dc:creator>Ian Stewart</dc:creator>
<guid isPermaLink="false">160@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I'm more worried about conflicts with plugins and whatnot. Plus, that admin bar plugin is pretty cool.
&#60;/p&#62;</description>
</item>
<item>
<title>patdryburgh on "Theme Option Request: Deactivate Sliding Panel"</title>
<link>http://themeshaper.com/forums/topic/theme-option-request-deactivate-sliding-panel#post-108</link>
<pubDate>Wed, 30 Jul 2008 17:24:24 +0000</pubDate>
<dc:creator>patdryburgh</dc:creator>
<guid isPermaLink="false">108@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;In your css, just add &#60;/p&#62;
&#60;p&#62;#site-meta {&#60;br /&#62;
display: none;&#60;br /&#62;
}
&#60;/p&#62;</description>
</item>
<item>
<title>Ian Stewart on "Theme Option Request: Deactivate Sliding Panel"</title>
<link>http://themeshaper.com/forums/topic/theme-option-request-deactivate-sliding-panel#post-77</link>
<pubDate>Mon, 28 Jul 2008 19:55:18 +0000</pubDate>
<dc:creator>Ian Stewart</dc:creator>
<guid isPermaLink="false">77@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I've been thinking about just deactivating it altogether. Having a theme option might be a good idea.
&#60;/p&#62;</description>
</item>
<item>
<title>CircleReader on "Theme Option Request: Deactivate Sliding Panel"</title>
<link>http://themeshaper.com/forums/topic/theme-option-request-deactivate-sliding-panel#post-76</link>
<pubDate>Mon, 28 Jul 2008 19:49:27 +0000</pubDate>
<dc:creator>CircleReader</dc:creator>
<guid isPermaLink="false">76@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I was wondering if there could be an option to use or not use the sliding meta panel. I know it has that great Snake-Eyes styling and all, but since it only appears when I am already logged in, it seems sorta like hanging the key on the inside of a locked door...
&#60;/p&#62;</description>
</item>

</channel>
</rss>
