<?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: Add Social Media Link/Icon</title>
		<link>http://www.kriesi.at/support/topic/add-social-media-linkicon</link>
		<description>Support Forum - Topic: Add Social Media Link/Icon</description>
		<language>en-US</language>
		<pubDate>Sat, 18 May 2013 23:38:50 +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/add-social-media-linkicon" rel="self" type="application/rss+xml" />

		<item>
			<title>Kriesi on "Add Social Media Link/Icon"</title>
			<link>http://www.kriesi.at/support/topic/add-social-media-linkicon#post-61203</link>
			<pubDate>Wed, 20 Jun 2012 18:28:00 +0000</pubDate>
			<dc:creator>Kriesi</dc:creator>
			<guid isPermaLink="false">61203@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey!&#60;/p&#62;
&#60;p&#62;We will add a special hook in the next theme that allows you to set up a a child theme and execute a function when the soical item list gets rendered so you can add your own :)&#60;/p&#62;
&#60;p&#62;Cheers&#60;br /&#62;
Kriesi
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Add Social Media Link/Icon"</title>
			<link>http://www.kriesi.at/support/topic/add-social-media-linkicon#post-50794</link>
			<pubDate>Mon, 09 Apr 2012 20:00:46 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">50794@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;This has been a concern for some of our users and I'm sure Kriesi will look into this. :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>kunststoffat on "Add Social Media Link/Icon"</title>
			<link>http://www.kriesi.at/support/topic/add-social-media-linkicon#post-50745</link>
			<pubDate>Mon, 09 Apr 2012 17:03:53 +0000</pubDate>
			<dc:creator>kunststoffat</dc:creator>
			<guid isPermaLink="false">50745@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Maybe the Youtube-Option is a good idea for the next update ;-)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kriesi on "Add Social Media Link/Icon"</title>
			<link>http://www.kriesi.at/support/topic/add-social-media-linkicon#post-45183</link>
			<pubDate>Thu, 08 Mar 2012 16:28:59 +0000</pubDate>
			<dc:creator>Kriesi</dc:creator>
			<guid isPermaLink="false">45183@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;This is correct, in case you need to run an update you need to make sure that you only upload the files mentioned in the versions.txt file. If any of the files you modified here is affected from the update you need to add the code again.&#60;/p&#62;
&#60;p&#62;I would recommend to use the custom.css file for your css modifictions, since we never touch this file in one of our updates and register admin options and sidebar.php are relatively save too ;D
&#60;/p&#62;</description>
		</item>
		<item>
			<title>kunststoffat on "Add Social Media Link/Icon"</title>
			<link>http://www.kriesi.at/support/topic/add-social-media-linkicon#post-44803</link>
			<pubDate>Tue, 06 Mar 2012 03:45:08 +0000</pubDate>
			<dc:creator>kunststoffat</dc:creator>
			<guid isPermaLink="false">44803@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;br /&#62;
I would like to add a social-media link for youtube.&#60;/p&#62;
&#60;p&#62;First I add in register-admin-options.php &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$avia_elements[] =	array(
			&#38;quot;name&#38;quot; 	=&#38;gt; &#38;quot;Your YouTube page/group/account&#38;quot;,
			&#38;quot;desc&#38;quot; 	=&#38;gt; &#38;quot;Enter the url to your YouTube page or channel. If you leave this blank the facebook link in your sidebar of your site wont be displayed.&#38;quot;,
			&#38;quot;id&#38;quot; 	=&#38;gt; &#38;quot;youtube&#38;quot;,
			&#38;quot;slug&#38;quot;	=&#38;gt; &#38;quot;contact&#38;quot;,
			&#38;quot;std&#38;quot; 	=&#38;gt; &#38;quot;http://www.youtube.de&#38;quot;,
			&#38;quot;type&#38;quot; 	=&#38;gt; &#38;quot;text&#38;quot;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and in the sidebar.php&#60;/p&#62;
&#60;p&#62;&#60;code&#62;if($youtube = avia_get_option(&#38;#39;youtube&#38;#39;)) echo &#38;quot;&#38;lt;li class=&#38;#39;youtube&#38;#39;&#38;gt;&#38;lt;a href=&#38;#39;&#38;quot;.$youtube.&#38;quot;&#38;#39;&#38;gt;youtube&#38;lt;/a&#38;gt;&#38;quot;;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;and in the css/minimal-skin.css&#60;/p&#62;
&#60;p&#62;&#60;code&#62;.social_bookmarks .youtube a{background: transparent url(../images/skin-minimal/icons-rounded-youtube.png) 0 0  no-repeat;}&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;after this I upload the icon.&#60;/p&#62;
&#60;p&#62;It runs,  but is it right, that this add-on is lost, if there will be a update of the theme?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
