<?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 - User Favorites: Colourstone</title>
		<link><a href='http://www.kriesi.at/support/profile/colourstone'>colourstone</a></link>
		<description>Support Forum - User Favorites: Colourstone</description>
		<language>en-US</language>
		<pubDate>Sat, 18 May 2013 16:09:47 +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/profile/" rel="self" type="application/rss+xml" />

		<item>
			<title>Ismael on "How to disable &#34;Recent Posts&#34; widget?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-disable-recent-posts-widget#post-94084</link>
			<pubDate>Wed, 30 Jan 2013 03:49:51 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">94084@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Not sure if this is what you want but this will remove the widget areas and of course the Recent Posts widget.&#60;/p&#62;
&#60;p&#62;Go to includes &#38;gt; admin, edit register-widget-area.php. Remove and replace everything with this code.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
// global $wp_registered_sidebars;
#########################################

if ( function_exists(&#38;#39;register_sidebar&#38;#39;) )
{
	$sidebars_to_show = array(&#38;#39;&#38;#39;);	 // (&#38;#39;.$sidebar.&#38;#39;)

		foreach ($sidebars_to_show as $sidebar)
		{	

		}

		foreach ($sidebars_to_show as $sidebar)
		{

		}

		foreach ($sidebars_to_show as $sidebar)
		{

		}

	//dynamic widgets

	#footer
	$footer_columns = avia_get_option(&#38;#39;footer_columns&#38;#39;,&#38;#39;5&#38;#39;);

	for ($i = 1; $i &#38;lt;= $footer_columns; $i++)
	{
		register_sidebar(array(
		&#38;#39;name&#38;#39; =&#38;gt; &#38;#39;Footer - column&#38;#39;.$i,
		&#38;#39;before_widget&#38;#39; =&#38;gt; &#38;#39;&#38;lt;div id=&#38;quot;%1$s&#38;quot; class=&#38;quot;widget %2$s&#38;quot;&#38;gt;&#38;#39;,
		&#38;#39;after_widget&#38;#39; =&#38;gt; &#38;#39;&#38;lt;span class=&#38;quot;seperator extralight-border&#38;quot;&#38;gt;&#38;lt;/span&#38;gt;&#38;lt;/div&#38;gt;&#38;#39;,
		&#38;#39;before_title&#38;#39; =&#38;gt; &#38;#39;&#38;lt;h3 class=&#38;quot;widgettitle&#38;quot;&#38;gt;&#38;#39;,
		&#38;#39;after_title&#38;#39; =&#38;gt; &#38;#39;&#38;lt;/h3&#38;gt;&#38;#39;,
		));
	}

		#extra widgets for pages
		$id_array = avia_check_custom_widget(&#38;#39;page&#38;#39;, &#38;#39;ids&#38;#39;);

		if(isset($id_array[0]))
		{
			foreach ($id_array as $page_id)
			{
				foreach ($sidebars_to_show as $sidebar)
				{
				if($page_id != &#38;quot;&#38;quot;)
				register_sidebar(array(
				&#38;#39;name&#38;#39; =&#38;gt; &#38;#39;Page: &#38;#39;.get_the_title($page_id).&#38;#39;&#38;#39;,
				&#38;#39;before_widget&#38;#39; =&#38;gt; &#38;#39;&#38;lt;div id=&#38;quot;%1$s&#38;quot; class=&#38;quot;widget %2$s&#38;quot;&#38;gt;&#38;#39;,
				&#38;#39;after_widget&#38;#39; =&#38;gt; &#38;#39;&#38;lt;span class=&#38;quot;seperator extralight-border&#38;quot;&#38;gt;&#38;lt;/span&#38;gt;&#38;lt;/div&#38;gt;&#38;#39;,
				&#38;#39;before_title&#38;#39; =&#38;gt; &#38;#39;&#38;lt;h3 class=&#38;quot;widgettitle&#38;quot;&#38;gt;&#38;#39;,
				&#38;#39;after_title&#38;#39; =&#38;gt; &#38;#39;&#38;lt;/h3&#38;gt;&#38;#39;,
				));

			}
		}
	}

		#extra widgets for categories
		$id_array = avia_check_custom_widget(&#38;#39;cat&#38;#39;, &#38;#39;ids&#38;#39;);

		if(isset($id_array[0]))
		{
			foreach ($id_array as $cat_id)
			{
				foreach ($sidebars_to_show as $sidebar)
				{
				if($cat_id != &#38;quot;&#38;quot;)
				register_sidebar(array(
				&#38;#39;name&#38;#39; =&#38;gt; &#38;#39;Category: &#38;#39;.get_the_category_by_ID($cat_id).&#38;#39;&#38;#39;,
				&#38;#39;before_widget&#38;#39; =&#38;gt; &#38;#39;&#38;lt;div id=&#38;quot;%1$s&#38;quot; class=&#38;quot;widget %2$s&#38;quot;&#38;gt;&#38;#39;,
				&#38;#39;after_widget&#38;#39; =&#38;gt; &#38;#39;&#38;lt;span class=&#38;quot;seperator extralight-border&#38;quot;&#38;gt;&#38;lt;/span&#38;gt;&#38;lt;/div&#38;gt;&#38;#39;,
				&#38;#39;before_title&#38;#39; =&#38;gt; &#38;#39;&#38;lt;h3 class=&#38;quot;widgettitle&#38;quot;&#38;gt;&#38;#39;,
				&#38;#39;after_title&#38;#39; =&#38;gt; &#38;#39;&#38;lt;/h3&#38;gt;&#38;#39;,
				));

			}
		}
	}

		#extra widgets for categories
		$name_array = avia_check_custom_widget(&#38;#39;dynamic_template&#38;#39;);

		if(isset($name_array))
		{
			foreach ($name_array as $name)
			{
				if($name != &#38;quot;&#38;quot;)
				register_sidebar(array(
				&#38;#39;name&#38;#39; =&#38;gt; &#38;#39;Dynamic Template: Widget &#38;#39;.$name,
				&#38;#39;before_widget&#38;#39; =&#38;gt; &#38;#39;&#38;lt;div id=&#38;quot;%1$s&#38;quot; class=&#38;quot;widget %2$s&#38;quot;&#38;gt;&#38;#39;,
				&#38;#39;after_widget&#38;#39; =&#38;gt; &#38;#39;&#38;lt;span class=&#38;quot;seperator extralight-border&#38;quot;&#38;gt;&#38;lt;/span&#38;gt;&#38;lt;/div&#38;gt;&#38;#39;,
				&#38;#39;before_title&#38;#39; =&#38;gt; &#38;#39;&#38;lt;h3 class=&#38;quot;widgettitle&#38;quot;&#38;gt;&#38;#39;,
				&#38;#39;after_title&#38;#39; =&#38;gt; &#38;#39;&#38;lt;/h3&#38;gt;&#38;#39;,
				));

		}
	}	

}

	function avia_dummy_widget($number)
	{
		switch($number)
		{

		}
	}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Colourstone on "How to disable &#34;Recent Posts&#34; widget?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-disable-recent-posts-widget#post-94080</link>
			<pubDate>Wed, 30 Jan 2013 03:18:53 +0000</pubDate>
			<dc:creator>Colourstone</dc:creator>
			<guid isPermaLink="false">94080@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Ismael,&#60;/p&#62;
&#60;p&#62;I need to remove it from the template!&#60;br /&#62;
It interferes with a more advanced plugin that is similar but has more options. How do I disable or remove that php code from the theme?&#60;br /&#62;
Sorry I wasn't specific enough.&#60;/p&#62;
&#60;p&#62;Thanks for the reply,&#60;br /&#62;
Brent
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "How to disable &#34;Recent Posts&#34; widget?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-disable-recent-posts-widget#post-94065</link>
			<pubDate>Wed, 30 Jan 2013 02:32:30 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">94065@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Go to Appearance &#38;gt; Widgets, remove the Recent Posts widget.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Colourstone on "How to disable &#34;Recent Posts&#34; widget?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-disable-recent-posts-widget#post-93966</link>
			<pubDate>Tue, 29 Jan 2013 18:21:59 +0000</pubDate>
			<dc:creator>Colourstone</dc:creator>
			<guid isPermaLink="false">93966@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Is there a way to disable the &#34;Recent Posts&#34; widget? I am trying to use a different widget for displaying this with additional options. The recents posts widget seems to block the other plugin from working. &#60;/p&#62;
&#60;p&#62;Thanks for the prompt reply, I have a client waiting.&#60;br /&#62;
Brent
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Import/Export theme options? Open social links in new page?"</title>
			<link>http://www.kriesi.at/support/topic/importexport-theme-options-open-social-links-in-new-page#post-89861</link>
			<pubDate>Thu, 03 Jan 2013 18:08:19 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">89861@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;That is correct Aleksandr. I believe Ismael may have just misunderstood the comment.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>nuforms on "Import/Export theme options? Open social links in new page?"</title>
			<link>http://www.kriesi.at/support/topic/importexport-theme-options-open-social-links-in-new-page#post-89799</link>
			<pubDate>Thu, 03 Jan 2013 13:21:21 +0000</pubDate>
			<dc:creator>nuforms</dc:creator>
			<guid isPermaLink="false">89799@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Ismael,&#60;/p&#62;
&#60;p&#62;I'm sorry, but with standard WordPress Tools &#38;gt; Export you &#60;strong&#62;CAN'T&#60;/strong&#62; export Theme Options (Theme Options, Styling, Layout &#38;amp; Settings, Portfolio, Contact, Sidebar, Footer) and you &#60;strong&#62;CAN'T&#60;/strong&#62; export page layouts created under Template Builder.&#60;/p&#62;
&#60;p&#62;I've tried to export/import with the same theme, same framework.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Aleksandr
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Import/Export theme options? Open social links in new page?"</title>
			<link>http://www.kriesi.at/support/topic/importexport-theme-options-open-social-links-in-new-page#post-89429</link>
			<pubDate>Mon, 24 Dec 2012 04:38:17 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">89429@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Aleksandr,&#60;/p&#62;
&#60;p&#62;You can export the theme setting functionality but you should import this on the same theme (or atleast same framework). Just go to Tools &#38;gt; Export.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>nuforms on "Import/Export theme options? Open social links in new page?"</title>
			<link>http://www.kriesi.at/support/topic/importexport-theme-options-open-social-links-in-new-page#post-89390</link>
			<pubDate>Sun, 23 Dec 2012 11:53:01 +0000</pubDate>
			<dc:creator>nuforms</dc:creator>
			<guid isPermaLink="false">89390@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I'm also interested in export theme setting functionality.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Aleksandr
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Import/Export theme options? Open social links in new page?"</title>
			<link>http://www.kriesi.at/support/topic/importexport-theme-options-open-social-links-in-new-page#post-89301</link>
			<pubDate>Sat, 22 Dec 2012 07:33:08 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">89301@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;1) No, atm it's not possible to export the theme settings. I'll mark this thread for Kriesi though (feature request).&#60;/p&#62;
&#60;p&#62;2) Open up choices/js/avia.js and replace following line at the very top:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;jQuery(document).ready(function(){&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;with:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;jQuery(document).ready(function(){

jQuery(&#38;quot;a[href^=&#38;#39;http:&#38;#39;],a[href^=&#38;#39;https:&#38;#39;]&#38;quot;).filter(function() { return this.hostname &#38;amp;&#38;amp; this.hostname !== location.hostname; }).attr(&#38;#39;target&#38;#39;, &#38;#39;_blank&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;This function will compare the link url with your url and if the link points to an external domain it will open a new tab/window.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Colourstone on "Import/Export theme options? Open social links in new page?"</title>
			<link>http://www.kriesi.at/support/topic/importexport-theme-options-open-social-links-in-new-page#post-89293</link>
			<pubDate>Sat, 22 Dec 2012 02:32:38 +0000</pubDate>
			<dc:creator>Colourstone</dc:creator>
			<guid isPermaLink="false">89293@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi.&#60;br /&#62;
Two questions please...&#60;/p&#62;
&#60;p&#62;1) Is the a way to import and export theme settings? This would save a ton of time when setting up new blogs! I see other frameworks doing it, can we?&#60;br /&#62;
2) How can I make the social links open in a NEW page?&#60;/p&#62;
&#60;p&#62;thank you for the prompt reply in advance!&#60;br /&#62;
Brent
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Footer column widths of: 25% 25% 50%.. how to?"</title>
			<link>http://www.kriesi.at/support/topic/footer-column-widths-of-25-25-50-how-to#post-75015</link>
			<pubDate>Sun, 09 Sep 2012 05:31:56 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">75015@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Glad Mya could help.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Colourstone on "Footer column widths of: 25% 25% 50%.. how to?"</title>
			<link>http://www.kriesi.at/support/topic/footer-column-widths-of-25-25-50-how-to#post-74959</link>
			<pubDate>Sat, 08 Sep 2012 17:39:22 +0000</pubDate>
			<dc:creator>Colourstone</dc:creator>
			<guid isPermaLink="false">74959@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thank you Mya! I forgot about using last-child. :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Mya on "Footer column widths of: 25% 25% 50%.. how to?"</title>
			<link>http://www.kriesi.at/support/topic/footer-column-widths-of-25-25-50-how-to#post-74608</link>
			<pubDate>Thu, 06 Sep 2012 02:24:37 +0000</pubDate>
			<dc:creator>Mya</dc:creator>
			<guid isPermaLink="false">74608@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;What I would do is go to Choices &#38;gt; Theme Options &#38;gt; Footer and select 3 columns then go to custom.css (located in the theme's /css/ folder) and add the following.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;#footer div .one_third {
margin-left:0%;
width: 23%;
}

#footer div .one_third:last-child {
float:right;
margin-left:0%;
width: 48%;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;What that should do is tell the browser to render the columns at 23%, 23% and 48%. I used those numbers so there would be spacing between the columns.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Mya
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Need social media icons in footer column 1 in Choices"</title>
			<link>http://www.kriesi.at/support/topic/need-social-media-icons-in-footer-column-1-in-choices#post-74524</link>
			<pubDate>Wed, 05 Sep 2012 16:58:40 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">74524@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Brent,&#60;/p&#62;
&#60;p&#62;In that case, it may be easier to just remove the code you've added from Ismael (revert to the original file) and then use a plugin to add social icons to that footer widget area and then you can just drag and drop a search widget into the area and anything else you may ever want to add.&#60;/p&#62;
&#60;p&#62;Otherwise, change the second snippet to the following in the same file:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php

echo &#38;quot;&#38;lt;div class=&#38;#39;flex_column one_fourth first&#38;#39;&#38;gt;&#38;quot;;
$args = array(&#38;#39;outside&#38;#39;=&#38;gt;&#38;#39;ul&#38;#39;, &#38;#39;inside&#38;#39;=&#38;gt;&#38;#39;li&#38;#39;, &#38;#39;append&#38;#39; =&#38;gt; &#38;#39;&#38;#39;);
avia_social_media_icons($args);
get_search_form();
echo &#38;quot;&#38;lt;/div&#38;gt;&#38;quot;;

?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;This may still require a bit of css fine tuning which you can add into the Quick CSS in the Styling tab of the theme options.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Colourstone on "Footer column widths of: 25% 25% 50%.. how to?"</title>
			<link>http://www.kriesi.at/support/topic/footer-column-widths-of-25-25-50-how-to#post-74366</link>
			<pubDate>Tue, 04 Sep 2012 18:38:48 +0000</pubDate>
			<dc:creator>Colourstone</dc:creator>
			<guid isPermaLink="false">74366@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;How do I get the following footer column widths: 25% 25% 50%.. ?&#60;/p&#62;
&#60;p&#62;Thank you!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Colourstone on "Need social media icons in footer column 1 in Choices"</title>
			<link>http://www.kriesi.at/support/topic/need-social-media-icons-in-footer-column-1-in-choices#post-74186</link>
			<pubDate>Mon, 03 Sep 2012 16:27:50 +0000</pubDate>
			<dc:creator>Colourstone</dc:creator>
			<guid isPermaLink="false">74186@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks for the help Ismael.&#60;/p&#62;
&#60;p&#62;What do I need to do to add the search also? I can't see wasting a column with just social icons.&#60;br /&#62;
Is there a way to either add this into an existing column or actually create a row above the footer columns? Do I just need to change the class to be a full 100% wide row?&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Brent
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Need social media icons in footer column 1 in Choices"</title>
			<link>http://www.kriesi.at/support/topic/need-social-media-icons-in-footer-column-1-in-choices#post-74118</link>
			<pubDate>Mon, 03 Sep 2012 07:57:43 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">74118@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Open footer.php and find this code, &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
					//create the footer columns by iterating  

					$columns = avia_get_option(&#38;#39;footer_columns&#38;#39;);

					$firstCol = &#38;#39;first&#38;#39;;
			        switch($columns)
			        {
			        	case 1: $class = &#38;#39;&#38;#39;; break;
			        	case 2: $class = &#38;#39;one_half&#38;#39;; break;
			        	case 3: $class = &#38;#39;one_third&#38;#39;; break;
			        	case 4: $class = &#38;#39;one_fourth&#38;#39;; break;
			        	case 5: $class = &#38;#39;one_fifth&#38;#39;; break;
			        }

					//display the footer widget that was defined at appearenace-&#38;gt;widgets in the wordpress backend
					//if no widget is defined display a dummy widget, located at the bottom of includes/register-widget-area.php
					for ($i = 1; $i &#38;lt;= $columns; $i++)
					{
						echo &#38;quot;&#38;lt;div class=&#38;#39;flex_column $class $firstCol&#38;#39;&#38;gt;&#38;quot;;
						if (function_exists(&#38;#39;dynamic_sidebar&#38;#39;) &#38;amp;&#38;amp; dynamic_sidebar(&#38;#39;Footer - column&#38;#39;.$i) ) : else : avia_dummy_widget($i); endif;
						echo &#38;quot;&#38;lt;/div&#38;gt;&#38;quot;;
						$firstCol = &#38;quot;&#38;quot;;
					}

					?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Assuming you want 4 columns in your footer. In this case you need to set it only to 3 columns because we are going to add another one. Below the snippet, add this code&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php

					echo &#38;quot;&#38;lt;div class=&#38;#39;flex_column one_fourth first&#38;#39;&#38;gt;&#38;quot;;
					$args = array(&#38;#39;outside&#38;#39;=&#38;gt;&#38;#39;ul&#38;#39;, &#38;#39;inside&#38;#39;=&#38;gt;&#38;#39;li&#38;#39;, &#38;#39;append&#38;#39; =&#38;gt; &#38;#39;&#38;#39;);
					avia_social_media_icons($args);
					echo &#38;quot;&#38;lt;/div&#38;gt;&#38;quot;;

					?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;We use class one_fourth because we are going to have 4 columns. You can change that to one_half, one_third and one_fifth.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Colourstone on "Need social media icons in footer column 1 in Choices"</title>
			<link>http://www.kriesi.at/support/topic/need-social-media-icons-in-footer-column-1-in-choices#post-74103</link>
			<pubDate>Mon, 03 Sep 2012 03:10:34 +0000</pubDate>
			<dc:creator>Colourstone</dc:creator>
			<guid isPermaLink="false">74103@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I am trying to add the social media icons in the footer of the Choices theme. I would like to actually place them in one of the columns. Any idea on how to do this?&#60;/p&#62;
&#60;p&#62;Too bad their is not a widget to just add anywhere we would like. Can this be done? That  would be great!!&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Brent
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Modifications to php files and creating a new Child Theme for Choices"</title>
			<link>http://www.kriesi.at/support/topic/modifications-to-php-files-and-creating-a-new-child-theme-for-choices#post-73916</link>
			<pubDate>Sat, 01 Sep 2012 06:53:17 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">73916@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;You don't have to copy all of the theme files, actually all you need for the theme child to work is style.css file. Try to include this on your child theme functions.php &#60;/p&#62;
&#60;p&#62;&#60;code&#62;global $avia_config; $avia_config[&#38;#39;use_child_theme_functions_only&#38;#39;] = false;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;The original functions.php on the theme will be use plus the added functions.php on the child theme if you are planning to add some. I suggest you put all of the added functionality on the new functions.php in your child theme folder. They will not be overwritten when you upgrade the theme. Just to make sure, create a backup for your theme files and database before updating.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Colourstone on "Modifications to php files and creating a new Child Theme for Choices"</title>
			<link>http://www.kriesi.at/support/topic/modifications-to-php-files-and-creating-a-new-child-theme-for-choices#post-73888</link>
			<pubDate>Fri, 31 Aug 2012 20:13:17 +0000</pubDate>
			<dc:creator>Colourstone</dc:creator>
			<guid isPermaLink="false">73888@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Nick,&#60;/p&#62;
&#60;p&#62;Thanks for your attempt at help but that doesn't work. I don't think you followed what I said.&#60;br /&#62;
Does someone there fully understand my question? Would you please ask Kriesi?&#60;br /&#62;
I have tried that plus more but when I create a child theme the CHOICES theme won't read my &#34;function.php&#34; file. He'll understand.&#60;br /&#62;
Thank you to someone.&#60;br /&#62;
Brent
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "Modifications to php files and creating a new Child Theme for Choices"</title>
			<link>http://www.kriesi.at/support/topic/modifications-to-php-files-and-creating-a-new-child-theme-for-choices#post-73709</link>
			<pubDate>Thu, 30 Aug 2012 20:46:20 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">73709@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I don't know about that plugin, but all you need to do is make a directory next to your theme's directory and inside have 1 css with a few lines of code:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;/*
Theme Name: Twenty Eleven Child
Description: Child theme for the Twenty Eleven theme
Author: Your name here
Template: twentyeleven
*/

@import url(&#38;quot;../twentyeleven/style.css&#38;quot;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Just make sure that the Template is the correct name of the parent theme as written in it's css file. That's it. Now if you want to replace something from the parent theme, you have to copy that file from the parent and drop it into the child, and Wordpress will always first look for every file in the Child folder, and if its not available there, then it will look in the Parent Folder. &#60;/p&#62;
&#60;p&#62;So if you want to customize a template that exists in the parent theme, just make a copy , and place it in the child theme in the same sub directory relative to the root as it is located in the  original. You can read more here &#60;a href=&#34;http://www.webdesignerdepot.com/2011/12/creating-your-first-wordpress-child-theme/&#34; rel=&#34;nofollow&#34;&#62;http://www.webdesignerdepot.com/2011/12/creating-your-first-wordpress-child-theme/&#60;/a&#62; or &#60;a href=&#34;http://www.ostraining.com/blog/wordpress/child-theme/&#34; rel=&#34;nofollow&#34;&#62;http://www.ostraining.com/blog/wordpress/child-theme/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Colourstone on "Modifications to php files and creating a new Child Theme for Choices"</title>
			<link>http://www.kriesi.at/support/topic/modifications-to-php-files-and-creating-a-new-child-theme-for-choices#post-73264</link>
			<pubDate>Tue, 28 Aug 2012 15:43:33 +0000</pubDate>
			<dc:creator>Colourstone</dc:creator>
			<guid isPermaLink="false">73264@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi &#38;amp; thanks again for your help.&#60;/p&#62;
&#60;p&#62;I have modified more than just css files for my choices theme. I have added functions and widgets plus I have modified several of the php files and some .js files also. I am now ready to create a child theme but I need to make sure that ALL of my additions and changes don't get overwritten with future updates.&#60;/p&#62;
&#60;p&#62;My questions are:&#60;br /&#62;
1) If I copy ALL of the files to my child theme will they override the parent choice's theme AND not just the css files? (other files like functions.php, assorted js files and other modifications to the framework)&#60;br /&#62;
2) Will the &#34;One-Click Child Theme&#34; plugin do all of this for me or just the .css files?&#60;br /&#62;
3) Do I need to make any modifications to php files before I do this?&#60;/p&#62;
&#60;p&#62;I appreciate your prompt reply!&#60;br /&#62;
Thanks, Brent
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Where do we edit Testimonials?"</title>
			<link>http://www.kriesi.at/support/topic/where-do-we-edit-testimonials#post-70125</link>
			<pubDate>Thu, 09 Aug 2012 02:42:10 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">70125@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;You can recreate that by enclosing a paragraph on a&#60;br /&#62;
blockquote tag&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;blockquote&#38;gt;This is an example page. It&#38;#39;s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:&#38;lt;/blockquote&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael&#60;/p&#62;</description>
		</item>
		<item>
			<title>Colourstone on "Where do we edit Testimonials?"</title>
			<link>http://www.kriesi.at/support/topic/where-do-we-edit-testimonials#post-70080</link>
			<pubDate>Wed, 08 Aug 2012 22:30:26 +0000</pubDate>
			<dc:creator>Colourstone</dc:creator>
			<guid isPermaLink="false">70080@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Devin,&#60;/p&#62;
&#60;p&#62;I am using Choices. I didn't see in on the actual page. I am using the imported info from the theme.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Brent
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Where do we edit Testimonials?"</title>
			<link>http://www.kriesi.at/support/topic/where-do-we-edit-testimonials#post-70067</link>
			<pubDate>Wed, 08 Aug 2012 21:24:43 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">70067@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Colourstone,&#60;/p&#62;
&#60;p&#62;Depending on the layout you are using, they could be in the actual page you have set as the Front page or if you go to the Template Builder they could be in a text block element for the template that is being used for that page.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Colourstone on "Where do we edit Testimonials?"</title>
			<link>http://www.kriesi.at/support/topic/where-do-we-edit-testimonials#post-70033</link>
			<pubDate>Wed, 08 Aug 2012 16:56:12 +0000</pubDate>
			<dc:creator>Colourstone</dc:creator>
			<guid isPermaLink="false">70033@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Where do we edit the Testimonials that are on the Landing Page Example?&#60;br /&#62;
Thank you!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "How to change the search box width before hover?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-change-the-search-box-width-before-hover#post-69410</link>
			<pubDate>Sun, 05 Aug 2012 04:15:10 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">69410@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Brent,&#60;/p&#62;
&#60;p&#62;Glad that Mya helped you. :)&#60;/p&#62;
&#60;p&#62;Cheers,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Colourstone on "How to change the search box width before hover?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-change-the-search-box-width-before-hover#post-69285</link>
			<pubDate>Fri, 03 Aug 2012 18:41:32 +0000</pubDate>
			<dc:creator>Colourstone</dc:creator>
			<guid isPermaLink="false">69285@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thank you.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "How to add predefined color schemes to theme options?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-add-predefined-color-schemes-to-theme-options#post-69208</link>
			<pubDate>Fri, 03 Aug 2012 08:49:08 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">69208@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Colourstone,&#60;/p&#62;
&#60;p&#62;I don't think we can add additional color scheme, choose the best scheme nearest to the one you like and modify some styles using Quick CSS or custom.css. :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Mya on "How to change the search box width before hover?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-change-the-search-box-width-before-hover#post-69152</link>
			<pubDate>Fri, 03 Aug 2012 02:36:54 +0000</pubDate>
			<dc:creator>Mya</dc:creator>
			<guid isPermaLink="false">69152@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Brent,&#60;/p&#62;
&#60;p&#62;Add this to your custom.css or Quick CSS.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;.header_meta #s {
    width: 121px;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;The default small size is 121px, the default wide size is 190px.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Mya
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
