<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Support Forum - Topic: BrightBox - Child Theme</title>
		<link>http://www.kriesi.at/support/topic/brightbox-child-theme</link>
		<description>Support Forum - Topic: BrightBox - Child Theme</description>
		<language>en-US</language>
		<pubDate>Thu, 23 May 2013 16:32:56 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.kriesi.at/support/search.php</link>
		</textInput>
		<atom:link href="http://www.kriesi.at/support/rss/topic/brightbox-child-theme" rel="self" type="application/rss+xml" />

		<item>
			<title>Kriesi on "BrightBox - Child Theme"</title>
			<link>http://www.kriesi.at/support/topic/brightbox-child-theme#post-27082</link>
			<pubDate>Thu, 15 Sep 2011 18:56:08 +0000</pubDate>
			<dc:creator>Kriesi</dc:creator>
			<guid isPermaLink="false">27082@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey Guys!&#60;/p&#62;
&#60;p&#62;Using child themes works exactly like mentioned in the documentation. its true, i seldom put them to use but after reading about your problems I tried to create a brightbox child theme on my own and it works perfectly fine (both with own css file and own functions.php file)&#60;/p&#62;
&#60;p&#62;So I can one again only point you to the wordpress codex: &#60;a href=&#34;http://codex.wordpress.org/Child_Themes&#34; rel=&#34;nofollow&#34;&#62;http://codex.wordpress.org/Child_Themes&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>colorit2 on "BrightBox - Child Theme"</title>
			<link>http://www.kriesi.at/support/topic/brightbox-child-theme#post-26617</link>
			<pubDate>Fri, 09 Sep 2011 09:05:04 +0000</pubDate>
			<dc:creator>colorit2</dc:creator>
			<guid isPermaLink="false">26617@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I would be interested in creating child themes, too.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>phatlix on "BrightBox - Child Theme"</title>
			<link>http://www.kriesi.at/support/topic/brightbox-child-theme#post-20737</link>
			<pubDate>Thu, 09 Jun 2011 03:57:47 +0000</pubDate>
			<dc:creator>phatlix</dc:creator>
			<guid isPermaLink="false">20737@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Does no one use child themes? Did I miss a post where this was discussed?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>phatlix on "BrightBox - Child Theme"</title>
			<link>http://www.kriesi.at/support/topic/brightbox-child-theme#post-20689</link>
			<pubDate>Wed, 08 Jun 2011 08:02:46 +0000</pubDate>
			<dc:creator>phatlix</dc:creator>
			<guid isPermaLink="false">20689@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I am trying to get a child theme setup as to not screw with the original theme code. Other threads I have read insinuate that this should be easy and point back to codex for answers. The obvious issue is that even a basic child setup has not been tested by Kriesi (or staff) or the results would be touched upon in more detail (rather then just the pointer back to codex). Also please note... this is not a rant, and I have a smile on my face as I am writing this. So please do not feel like I am biting your leg off.&#60;/p&#62;
&#60;p&#62;I have tested a child setup on a couple other themes (free generic themes... basic code), and all work fine. The issue with BrightBox and perhaps others fails when the functions.php gets put into place.&#60;/p&#62;
&#60;p&#62;So here is the setup......&#60;/p&#62;
&#60;p&#62;create folder: brightbox-child&#60;br /&#62;
in folder: create style.css and add the following&#60;/p&#62;
&#60;p&#62;/*&#60;br /&#62;
Theme Name: BrightBox Child&#60;br /&#62;
Description: BrightBox Customizations&#60;br /&#62;
Author: Your Name&#60;br /&#62;
Template: brightbox&#60;br /&#62;
*/&#60;/p&#62;
&#60;p&#62;@import url(&#34;../brightbox/style.css&#34;);&#60;/p&#62;
&#60;p&#62;(customizations here)&#60;/p&#62;
&#60;p&#62;--&#38;gt; save file&#60;/p&#62;
&#60;p&#62;This is all that is required to create the child in it's basic form. Adding code to the style.css works fine.&#60;/p&#62;
&#60;p&#62;Now create a functions.php. If you add nothing to the file all works fine... as soon as you add&#60;/p&#62;
&#60;p&#62;&#38;lt;?php&#60;/p&#62;
&#60;p&#62;to the top of the file, save and refresh, all is broken. It does not matter if you close the tag, nothing will work.&#60;/p&#62;
&#60;p&#62;This is the child theme issue I am having, and codex does not help resolve this issue, nor does extreme Google searching.&#60;/p&#62;
&#60;p&#62;---&#60;/p&#62;
&#60;p&#62;To better understand what I want to do with the functions file is this. I would like to add the following shortcode function without it being overwritten in later updates (should there be any).&#60;/p&#62;
&#60;p&#62;--&#38;gt; style.css:&#60;/p&#62;
&#60;p&#62;span.keyword {background-color:yellow;}&#60;/p&#62;
&#60;p&#62;--&#38;gt; functions.php&#60;/p&#62;
&#60;p&#62;function keyword_shortcode( $atts, $content = null ) { return '&#38;lt;span class=&#34;keyword&#34;&#38;gt;' . $content . '&#38;lt;/span&#38;gt;'; }&#60;br /&#62;
add_shortcode( 'keyword', 'keyword_shortcode' );&#60;/p&#62;
&#60;p&#62;Thanks for any further insight anyone can offer into this matter.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Kenny
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
