<?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: Credits Site info</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Thu, 23 May 2013 05:21:50 +0000</pubDate>

<item>
<title>helgatheviking on "Where in Thematic is site info links"</title>
<link>http://themeshaper.com/forums/topic/where-in-thematic-is-site-info-links#post-26612</link>
<pubDate>Tue, 24 Apr 2012 22:01:23 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">26612@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;please be sure you are using this version of thematic:&#60;br /&#62;
&#60;a href=&#34;http://developing.thematic4you.com/thematic-development-release/&#34; rel=&#34;nofollow&#34;&#62;http://developing.thematic4you.com/thematic-development-release/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;a lot of those errors were fixed
&#60;/p&#62;</description>
</item>
<item>
<title>vivojack on "Where in Thematic is site info links"</title>
<link>http://themeshaper.com/forums/topic/where-in-thematic-is-site-info-links#post-26611</link>
<pubDate>Tue, 24 Apr 2012 21:59:29 +0000</pubDate>
<dc:creator>vivojack</dc:creator>
<guid isPermaLink="false">26611@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I think I have found an error with the childtheme_override_siteinfo() functionality.  Specifically in footer-extension.php you have &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;if (function_exists('childtheme_override_siteinfo'))  {
		function thematic_siteinfo() {
			childtheme_override_siteinfo();
		}
	} else {
	    function thematic_siteinfo() {
        	global $options, $blog_id;
			foreach ($options as $value) {
        		if (get_option( $value['id'] ) === FALSE) {
            		$$value['id'] = $value['std'];
        		} else {
        			if (THEMATIC_MB) {
            			$$value['id'] = get_blog_option( $blog_id, $value['id'] );
					} else {
            			$$value['id'] = get_option( $value['id'] );
  					}
        		}
			}
        	/* footer text set in theme options */
        	echo do_shortcode(__(stripslashes(thematic_footertext($thm_footertext)), 'thematic'));
        }
    	add_action('thematic_footer', 'thematic_siteinfo', 30);
    }
&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;but because add_action('thematic_footer', 'thematic_siteinfo', 30); is inside the option that the user has not defined an override function, it needs to be added to the childtheme_override_siteinfo function.  So Helgathevikings example above becomes:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;
function childtheme_override_siteinfo)(){
  echo &#34;site powered by bacon&#34;;
 add_action('thematic_footer', 'thematic_siteinfo', 30);
}
&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;or else it does nothing.  This is also true of childtheme_override_siteinfoopen() and childtheme_override_siteinfoclose() but I am assuming this is not what you intended.&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Where in Thematic is site info links"</title>
<link>http://themeshaper.com/forums/topic/where-in-thematic-is-site-info-links#post-26346</link>
<pubDate>Sun, 15 Apr 2012 16:07:29 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">26346@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;yes it is a theme option you can change under appearance &#38;gt; theme options&#60;/p&#62;
&#60;p&#62;you could also override the thematic_siteinfo() function with your own custom childtheme_override_siteinfo()&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function childtheme_override_siteinfo)(){
  echo &#38;quot;site powered by bacon&#38;quot;;

}&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>d_rec on "Where in Thematic is site info links"</title>
<link>http://themeshaper.com/forums/topic/where-in-thematic-is-site-info-links#post-26344</link>
<pubDate>Sun, 15 Apr 2012 13:21:29 +0000</pubDate>
<dc:creator>d_rec</dc:creator>
<guid isPermaLink="false">26344@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;You'll need to add this to your functions.php in your child theme &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;//add me to post footer
function get_me($atts) {
	return &#38;#39;&#38;lt;a href=&#38;quot;http://yourwebsite.com&#38;quot;&#38;gt;your name&#38;lt;/a&#38;gt;&#38;#39;;
}
add_shortcode(&#38;#39;me&#38;#39;, &#38;#39;get_me&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Than to display, go to theme options under appearance and add [me] - you'll see other shortcode examples below the box to.
&#60;/p&#62;</description>
</item>
<item>
<title>Karl-Arne on "Where in Thematic is site info links"</title>
<link>http://themeshaper.com/forums/topic/where-in-thematic-is-site-info-links#post-26343</link>
<pubDate>Sun, 15 Apr 2012 12:34:42 +0000</pubDate>
<dc:creator>Karl-Arne</dc:creator>
<guid isPermaLink="false">26343@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Helle.&#60;br /&#62;
I have been going through at book from sitepoint about WordPress.&#60;br /&#62;
I have laern much from the book but lack information of how to update the link below footer were site-info is given.&#60;/p&#62;
&#60;p&#62;It is written at bottom of the pages:&#60;br /&#62;
Driving by WordPress. Build on Thematic Theme Framework.&#60;br /&#62;
(In norwegian. I translate it to explain the link text in English) &#60;/p&#62;
&#60;p&#62;I will write here.&#60;br /&#62;
Driving by WordPress. Build on Thematic Theme Framework by The Web Coder.&#60;br /&#62;
The work &#34;WordPress&#34; shall be a link. Thematic Theme Framework is anonter link and &#34;The Web Coder&#34; is a link to my homepages.&#60;/p&#62;
&#60;p&#62;Where can I do this?&#60;/p&#62;
&#60;p&#62;Thanks for your time
&#60;/p&#62;</description>
</item>

</channel>
</rss>
