<?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 - Tag: target=_blank - Recent Posts</title>
		<link>http://www.kriesi.at/support/tags/target_blank</link>
		<description>Support Forum - Tag: target=_blank - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Sun, 26 May 2013 00:43:25 +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/tags/target_blank" rel="self" type="application/rss+xml" />

		<item>
			<title>Dude on "Sentence Theme Adding &#039;target=&#34;_blank&#34;&#039; to slideshow link"</title>
			<link>http://www.kriesi.at/support/topic/sentence-theme-adding-target_blank-to-slideshow-link#post-95806</link>
			<pubDate>Fri, 08 Feb 2013 08:44:14 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">95806@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey! &#60;/p&#62;
&#60;p&#62; Hi,&#60;br /&#62;
You can use the js code I posted here: &#60;a href=&#34;http://www.kriesi.at/support/topic/how-to-apply-a-targetblank-to-kenburn-slider-images-linked-to-an-external-url&#34; rel=&#34;nofollow&#34;&#62;http://www.kriesi.at/support/topic/how-to-apply-a-targetblank-to-kenburn-slider-images-linked-to-an-external-url&#60;/a&#62; - it will add a target=blank attribute to all external links. &#60;/p&#62;
&#60;p&#62; Best regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jewing on "Sentence Theme Adding &#039;target=&#34;_blank&#34;&#039; to slideshow link"</title>
			<link>http://www.kriesi.at/support/topic/sentence-theme-adding-target_blank-to-slideshow-link#post-95743</link>
			<pubDate>Thu, 07 Feb 2013 19:27:44 +0000</pubDate>
			<dc:creator>jewing</dc:creator>
			<guid isPermaLink="false">95743@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Currently, when linking to an outside page form a slide show image, there is not&#60;br /&#62;
an option for &#34;Open in new page&#34;. Haven't been able to locate anything in the&#60;br /&#62;
theme files. Any suggestions?  thx.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Social Media Icons - how to open in a NEW window?"</title>
			<link>http://www.kriesi.at/support/topic/social-media-icons-how-to-open-in-a-new-window#post-90101</link>
			<pubDate>Fri, 04 Jan 2013 18:53:28 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">90101@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Unlikely. I know it has been asked for from time to time but so far Kriesi has not added one to any of the themes.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Adendum on "Social Media Icons - how to open in a NEW window?"</title>
			<link>http://www.kriesi.at/support/topic/social-media-icons-how-to-open-in-a-new-window#post-90059</link>
			<pubDate>Fri, 04 Jan 2013 12:32:59 +0000</pubDate>
			<dc:creator>Adendum</dc:creator>
			<guid isPermaLink="false">90059@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Devin,&#60;/p&#62;
&#60;p&#62;Perfect. Many thanks.&#60;/p&#62;
&#60;p&#62;What are the chances of having a child theme in the future?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Social Media Icons - how to open in a NEW window?"</title>
			<link>http://www.kriesi.at/support/topic/social-media-icons-how-to-open-in-a-new-window#post-89876</link>
			<pubDate>Thu, 03 Jan 2013 18:49:59 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">89876@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Adendum,&#60;/p&#62;
&#60;p&#62;There isn't currently a child theme already create but the change is pretty simple. Open includes&#38;gt;helper-social-media.php and look for:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;$html .= &#38;quot;&#38;lt;a href=&#38;#39;&#38;quot;.$icon[&#38;#39;social_icon_link&#38;#39;].&#38;quot;&#38;#39;&#38;gt;&#38;quot;.ucfirst($icon[&#38;#39;social_icon&#38;#39;]).&#38;quot;&#38;lt;/a&#38;gt;&#38;quot;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;replace that line with:&#60;br /&#62;
&#60;code&#62;$html .= &#38;quot;&#38;lt;a href=&#38;#39;&#38;quot;.$icon[&#38;#39;social_icon_link&#38;#39;].&#38;quot;&#38;#39; target=&#38;#39;_blank&#38;#39;&#38;gt;&#38;quot;.ucfirst($icon[&#38;#39;social_icon&#38;#39;]).&#38;quot;&#38;lt;/a&#38;gt;&#38;quot;;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;So that the target blank gets added to all social media links. &#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Adendum on "Social Media Icons - how to open in a NEW window?"</title>
			<link>http://www.kriesi.at/support/topic/social-media-icons-how-to-open-in-a-new-window#post-89821</link>
			<pubDate>Thu, 03 Jan 2013 16:02:05 +0000</pubDate>
			<dc:creator>Adendum</dc:creator>
			<guid isPermaLink="false">89821@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I would prefer to have all social media icons open a new tab or window rather than in the same window. There does not appear to be an option for this so I assume I would need to edit the php in one of the theme files? If so where?&#60;/p&#62;
&#60;p&#62;Also if this is the only route is there a child theme available to ensure future updates don't overwrite any changes?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Social icons on _blank target"</title>
			<link>http://www.kriesi.at/support/topic/social-icons-on-_blank-target#post-59081</link>
			<pubDate>Wed, 06 Jun 2012 17:18:27 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">59081@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey Pelyon,&#60;/p&#62;
&#60;p&#62;For Angular specifically see: &#60;a href=&#34;http://www.kriesi.at/support/topic/open-urls-in-new-window#post-42269&#34; rel=&#34;nofollow&#34;&#62;http://www.kriesi.at/support/topic/open-urls-in-new-window#post-42269&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>pelyon on "Social icons on _blank target"</title>
			<link>http://www.kriesi.at/support/topic/social-icons-on-_blank-target#post-59027</link>
			<pubDate>Wed, 06 Jun 2012 05:07:44 +0000</pubDate>
			<dc:creator>pelyon</dc:creator>
			<guid isPermaLink="false">59027@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;How would you do this in the Angular them? thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Social icons on _blank target"</title>
			<link>http://www.kriesi.at/support/topic/social-icons-on-_blank-target#post-56285</link>
			<pubDate>Wed, 16 May 2012 15:21:36 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">56285@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;In your themes folder(Coherence) kindly open: includes &#38;gt; helper-social-media.php. Then try to find this line of code:&#60;br /&#62;
&#60;code&#62;&#60;code&#62;$html .= &#38;quot;&#38;lt;a href=&#38;#39;&#38;quot;.$icon[&#38;#39;social_icon_link&#38;#39;].&#38;quot;&#38;#39;&#38;gt;&#38;quot;.ucfirst($icon[&#38;#39;social_icon&#38;#39;]).&#38;quot;&#38;lt;/a&#38;gt;&#38;quot;;&#60;/code&#62;&#60;/code&#62;&#60;br /&#62;
And replace it with:&#60;br /&#62;
&#60;code&#62;&#60;code&#62;$html .= &#38;quot;&#38;lt;a href=&#38;#39;&#38;quot;.$icon[&#38;#39;social_icon_link&#38;#39;].&#38;quot;&#38;#39; target=&#38;#39;_blank&#38;#39;&#38;gt;&#38;quot;.ucfirst($icon[&#38;#39;social_icon&#38;#39;]).&#38;quot;&#38;lt;/a&#38;gt;&#38;quot;;&#60;/code&#62;&#60;/code&#62;&#60;br /&#62;
Hope this helps. :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>followmedia on "Social icons on _blank target"</title>
			<link>http://www.kriesi.at/support/topic/social-icons-on-_blank-target#post-55969</link>
			<pubDate>Mon, 14 May 2012 11:18:05 +0000</pubDate>
			<dc:creator>followmedia</dc:creator>
			<guid isPermaLink="false">55969@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello,&#60;br /&#62;
I would like to open header's social icons links on _blank target.&#60;br /&#62;
How can I do ?&#60;br /&#62;
Thanks in advance.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
