<?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: Adding extra social icons</title>
		<link>http://www.kriesi.at/support/topic/adding-extra-social-icons</link>
		<description>Support Forum - Topic: Adding extra social icons</description>
		<language>en-US</language>
		<pubDate>Wed, 19 Jun 2013 14:57:32 +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/adding-extra-social-icons" rel="self" type="application/rss+xml" />

		<item>
			<title>LateForWork on "Adding extra social icons"</title>
			<link>http://www.kriesi.at/support/topic/adding-extra-social-icons#post-105664</link>
			<pubDate>Mon, 15 Apr 2013 17:52:26 +0000</pubDate>
			<dc:creator>LateForWork</dc:creator>
			<guid isPermaLink="false">105664@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;@NICK!!!!!!! hell yeah it worked thank you so much!!!!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "Adding extra social icons"</title>
			<link>http://www.kriesi.at/support/topic/adding-extra-social-icons#post-105658</link>
			<pubDate>Mon, 15 Apr 2013 17:08:20 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">105658@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Please overwrite your current code with the rewritten code from my previous post.&#60;/p&#62;
&#60;p&#62;I made two changes to the above code, and now it will work! or I will be disgraced for eternity. :(&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>LateForWork on "Adding extra social icons"</title>
			<link>http://www.kriesi.at/support/topic/adding-extra-social-icons#post-105651</link>
			<pubDate>Mon, 15 Apr 2013 15:49:24 +0000</pubDate>
			<dc:creator>LateForWork</dc:creator>
			<guid isPermaLink="false">105651@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;changed the coding in the header.php and still the same error
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "Adding extra social icons"</title>
			<link>http://www.kriesi.at/support/topic/adding-extra-social-icons#post-105487</link>
			<pubDate>Sun, 14 Apr 2013 05:36:26 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">105487@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;The way you added the Youtube link is different from the way the others were added so  yours is trying to open up the icon inside a lightbox.&#60;/p&#62;
&#60;p&#62;Please open up header.php and find the block of code on lines 107-110 (since you edited the file your lines would be different but they would start with &#38;lt;?php and end with ?&#38;gt;)&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
     if($twitter = avia_get_option(&#38;#39;twitter&#38;#39;)) echo &#38;quot;&#38;lt;li class=&#38;#39;twitter&#38;#39;&#38;gt;&#38;lt;a href=&#38;#39;http://twitter.com/&#38;quot;.$twitter.&#38;quot;&#38;#39;&#38;gt;Twitter&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;&#38;quot;;
     if($facebook = avia_get_option(&#38;#39;facebook&#38;#39;)) echo &#38;quot;&#38;lt;li class=&#38;#39;facebook&#38;#39;&#38;gt;&#38;lt;a href=&#38;#39;&#38;quot;.$facebook.&#38;quot;&#38;#39;&#38;gt;Facebook&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;&#38;quot;;
?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and replace that block above with the code below&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
     $temp_youtube_url=&#38;#39;http://www.youtube.com/user/LateForWorkLLC&#38;#39;;
     if($twitter = avia_get_option(&#38;#39;twitter&#38;#39;)) echo &#38;quot;&#38;lt;li class=&#38;#39;twitter&#38;#39;&#38;gt;&#38;lt;a href=&#38;#39;http://twitter.com/&#38;quot;.$twitter.&#38;quot;&#38;#39;&#38;gt;Twitter&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;&#38;quot;;
     if($facebook = avia_get_option(&#38;#39;facebook&#38;#39;)) echo &#38;quot;&#38;lt;li class=&#38;#39;facebook&#38;#39;&#38;gt;&#38;lt;a href=&#38;#39;&#38;quot;.$facebook.&#38;quot;&#38;#39;&#38;gt;Facebook&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;&#38;quot;;
     echo &#38;quot;&#38;lt;li class=&#38;#39;youtube&#38;#39;&#38;gt;&#38;lt;a class=&#38;#39;noLightbox&#38;#39; href=&#38;#39;&#38;quot;.$temp_youtube_url.&#38;quot;&#38;#39;&#38;gt;Youtube&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;&#38;quot;;
?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>LateForWork on "Adding extra social icons"</title>
			<link>http://www.kriesi.at/support/topic/adding-extra-social-icons#post-105318</link>
			<pubDate>Fri, 12 Apr 2013 16:01:16 +0000</pubDate>
			<dc:creator>LateForWork</dc:creator>
			<guid isPermaLink="false">105318@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;my website is &#60;a href=&#34;http://www.LateForWorkLLC.com&#34; rel=&#34;nofollow&#34;&#62;http://www.LateForWorkLLC.com&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "Adding extra social icons"</title>
			<link>http://www.kriesi.at/support/topic/adding-extra-social-icons#post-105241</link>
			<pubDate>Fri, 12 Apr 2013 01:00:25 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">105241@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey!&#60;/p&#62;
&#60;p&#62;Post a link please.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>LateForWork on "Adding extra social icons"</title>
			<link>http://www.kriesi.at/support/topic/adding-extra-social-icons#post-105076</link>
			<pubDate>Wed, 10 Apr 2013 12:41:58 +0000</pubDate>
			<dc:creator>LateForWork</dc:creator>
			<guid isPermaLink="false">105076@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I followed the steps on here and was able to add a youtube icon on the header. When I click on the header is says that the icon path is wrong or not there. I do not get that! If it show's the image I would assume the information is correct but I do not know.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Adding extra social icons"</title>
			<link>http://www.kriesi.at/support/topic/adding-extra-social-icons#post-104721</link>
			<pubDate>Mon, 08 Apr 2013 05:24:48 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">104721@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey! &#60;/p&#62;
&#60;p&#62; Please elaborate (post a link and explain the issue better). &#60;/p&#62;
&#60;p&#62; Regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>LateForWork on "Adding extra social icons"</title>
			<link>http://www.kriesi.at/support/topic/adding-extra-social-icons#post-104679</link>
			<pubDate>Sun, 07 Apr 2013 16:03:19 +0000</pubDate>
			<dc:creator>LateForWork</dc:creator>
			<guid isPermaLink="false">104679@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;i added a youtube icon and it says the image doesn't work but it shows the image any help?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Monsoon on "Adding extra social icons"</title>
			<link>http://www.kriesi.at/support/topic/adding-extra-social-icons#post-20256</link>
			<pubDate>Wed, 01 Jun 2011 01:07:56 +0000</pubDate>
			<dc:creator>Monsoon</dc:creator>
			<guid isPermaLink="false">20256@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks so much for the quick fix I was about to lose all my hair pulling it like a maniac trying to find where to make changes to the code :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kriesi on "Adding extra social icons"</title>
			<link>http://www.kriesi.at/support/topic/adding-extra-social-icons#post-20241</link>
			<pubDate>Tue, 31 May 2011 21:28:19 +0000</pubDate>
			<dc:creator>Kriesi</dc:creator>
			<guid isPermaLink="false">20241@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey! Indeed an oversight, sorry for that. Thankfully it is easilly fixed:&#60;/p&#62;
&#60;p&#62;open avia.js in your JS folder. arround line 339 it should read:&#60;/p&#62;
&#60;pre&#62;
var elements = $(options.autolinkElements, this),
&#60;/pre&#62;
&#60;p&#62;Change it to:&#60;/p&#62;
&#60;pre&#62;
var elements = $(options.autolinkElements, this).not('.noLightbox, .noLightbox a'),
&#60;/pre&#62;
&#60;p&#62;links with the class noLightbox and links within another element of this class will no longer be targetet by the lightbox script. We will apply this fix in the next theme update as well, so thanks for noticing it :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Adding extra social icons"</title>
			<link>http://www.kriesi.at/support/topic/adding-extra-social-icons#post-20236</link>
			<pubDate>Tue, 31 May 2011 20:46:25 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">20236@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I'll report it to Kriesi asap.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Monsoon on "Adding extra social icons"</title>
			<link>http://www.kriesi.at/support/topic/adding-extra-social-icons#post-20211</link>
			<pubDate>Tue, 31 May 2011 18:42:08 +0000</pubDate>
			<dc:creator>Monsoon</dc:creator>
			<guid isPermaLink="false">20211@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Please let me know about this because at the moment I am unable to use this theme because of this issue.&#60;br /&#62;
Adding a simple image in a header with a link should not be something I spent about 2 days trying to figure out how to do. Please try to make it work on your end and you will see the noLightbox tag is not working...at least in the header
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Monsoon on "Adding extra social icons"</title>
			<link>http://www.kriesi.at/support/topic/adding-extra-social-icons#post-20164</link>
			<pubDate>Mon, 30 May 2011 18:19:39 +0000</pubDate>
			<dc:creator>Monsoon</dc:creator>
			<guid isPermaLink="false">20164@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;If one needs to add a banner ad in the header at the moment this theme does not allow it...and that is a very serious oversight&#60;/p&#62;
&#60;p&#62;You GOT to provide a way to turn off this url rewrite
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Monsoon on "Adding extra social icons"</title>
			<link>http://www.kriesi.at/support/topic/adding-extra-social-icons#post-20162</link>
			<pubDate>Mon, 30 May 2011 18:00:20 +0000</pubDate>
			<dc:creator>Monsoon</dc:creator>
			<guid isPermaLink="false">20162@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;this is the html output I get after a lot of modifications, changes to the admin files, youtube class added etc&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;li class=&#38;quot;youtube&#38;quot;&#38;gt;
&#38;lt;a rel=&#38;quot;douche&#38;quot; href=&#38;quot;http://youtube.com/&#38;quot;&#38;gt;Youtube&#38;lt;/a&#38;gt;
&#38;lt;/li&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;is STILL gets the url rewritten and forces the lightbox even when the html output does not have a lightbox rel
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Monsoon on "Adding extra social icons"</title>
			<link>http://www.kriesi.at/support/topic/adding-extra-social-icons#post-20161</link>
			<pubDate>Mon, 30 May 2011 17:43:18 +0000</pubDate>
			<dc:creator>Monsoon</dc:creator>
			<guid isPermaLink="false">20161@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Ok this is really getting on my nerves.&#60;br /&#62;
the noLightbox class does not work and images still try to load the lightbox it is really irritating.&#60;/p&#62;
&#60;p&#62;So far I can not see any way to add a simple image anywhere in the header or anywhere for that matter in any code without the lightbox taking over ever with the class no lioghtbox which does not work.&#60;/p&#62;
&#60;p&#62;Why is this code being re-written? I even put the class twice&#60;br /&#62;
&#60;code&#62;&#38;lt;li class=&#38;#39;noLightbox&#38;#39;&#38;gt;&#38;lt;a class=&#38;#39;noLightbox&#38;#39; href=&#38;quot;http://www.youtube.com/&#38;quot;&#38;gt;&#38;lt;img src=&#38;quot;/wp-content/themes/brightbox/images/skin1/youtube.png&#38;quot; /&#38;gt;&#38;lt;/a&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Honestly of all the themes I bought from Krisesi this is the worst to customize so far. I probably spent more time trying to add a simple image to the header than it would have taken me to rewrite the whole theme from scratch. I love your work Kriesi but this is just plain ridiculous now. Automatic rewrite of all img tags is a nightmare if your nolightbox class is not picked up&#60;/p&#62;
&#60;p&#62;I don t understand honestly the purpose of having all images pointing to the lightbox...shouldn t only images in the gallery be lightboxed?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Monsoon on "Adding extra social icons"</title>
			<link>http://www.kriesi.at/support/topic/adding-extra-social-icons#post-20103</link>
			<pubDate>Sun, 29 May 2011 16:09:36 +0000</pubDate>
			<dc:creator>Monsoon</dc:creator>
			<guid isPermaLink="false">20103@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Sorry...still does not work
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Adding extra social icons"</title>
			<link>http://www.kriesi.at/support/topic/adding-extra-social-icons#post-20086</link>
			<pubDate>Sun, 29 May 2011 08:26:07 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">20086@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
1) Try to add the nolightbox class to the a href element (and not the list element) like:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;li class=&#38;quot;youtube&#38;quot;&#38;gt;&#38;lt;a class=&#38;quot;noLightbox&#38;quot; href=&#38;quot;http://www.youtube.com/&#38;quot;&#38;gt;Youtube&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;2) If that doesn't help you can use a link shortner service like: &#60;a href=&#34;http://bit.ly/&#34; rel=&#34;nofollow&#34;&#62;http://bit.ly/&#60;/a&#62; to hide the youtube.com link from the lightbox. You can also exclude youtube links by modifying js/avia.js
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Monsoon on "Adding extra social icons"</title>
			<link>http://www.kriesi.at/support/topic/adding-extra-social-icons#post-20066</link>
			<pubDate>Sat, 28 May 2011 18:34:06 +0000</pubDate>
			<dc:creator>Monsoon</dc:creator>
			<guid isPermaLink="false">20066@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;&#60;code&#62;&#38;lt;li class=&#38;quot;youtube noLightbox&#38;quot;&#38;gt;&#38;lt;a href=&#38;quot;http://www.youtube.com/&#38;quot;&#38;gt;Youtube&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;does not work in the header where the social boookmarks are, the nolightbox class is not picked up and clicking the icon I made tries to open the image instead of going to the link. Any clues what I am doing wrong?&#60;br /&#62;
The youtube class picks up the new image from the css and adding a new rel= in the ahref also does not overwrite the lightbox rule.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
