<?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: 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</link>
		<description>Support Forum - Topic: Need social media icons in footer column 1 in Choices</description>
		<language>en-US</language>
		<pubDate>Sat, 25 May 2013 17:04:55 +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/need-social-media-icons-in-footer-column-1-in-choices" rel="self" type="application/rss+xml" />

		<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 "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>

	</channel>
</rss>
