<?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: link in description - Recent Posts</title>
		<link>http://www.kriesi.at/support/tags/link-in-description</link>
		<description>Support Forum - Tag: link in description - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Wed, 22 May 2013 10:37:36 +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/link-in-description" rel="self" type="application/rss+xml" />

		<item>
			<title>Ismael on "Linkable description on lightbox"</title>
			<link>http://www.kriesi.at/support/topic/linkable-description-on-lightbox#post-88744</link>
			<pubDate>Tue, 18 Dec 2012 09:11:36 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">88744@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Paloma,&#60;/p&#62;
&#60;p&#62;Glad that Peter helped you. :)&#60;/p&#62;
&#60;p&#62;Cheers,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>palomeque on "Linkable description on lightbox"</title>
			<link>http://www.kriesi.at/support/topic/linkable-description-on-lightbox#post-88741</link>
			<pubDate>Tue, 18 Dec 2012 09:05:47 +0000</pubDate>
			<dc:creator>palomeque</dc:creator>
			<guid isPermaLink="false">88741@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Works perfect!!! &#60;/p&#62;
&#60;p&#62;Thanks a lot!!!!!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Linkable description on lightbox"</title>
			<link>http://www.kriesi.at/support/topic/linkable-description-on-lightbox#post-88732</link>
			<pubDate>Tue, 18 Dec 2012 08:45:11 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">88732@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey! &#60;/p&#62;
&#60;p&#62; You can try following css code - it will hide the description on woocommerce pages (and only on these pages):&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;.woocommerce .pp_description { display: none !important; }&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62; Best regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>palomeque on "Linkable description on lightbox"</title>
			<link>http://www.kriesi.at/support/topic/linkable-description-on-lightbox#post-88692</link>
			<pubDate>Mon, 17 Dec 2012 21:59:16 +0000</pubDate>
			<dc:creator>palomeque</dc:creator>
			<guid isPermaLink="false">88692@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;It worked awesomely!! The only matter is that It doesn´t works on lightboxes opened from woocommerce products, I think maybe it's because I'm using attachments plugins for woocommerce products since I didn't want to upload again all my images, and it was the only way to access my media library.&#60;br /&#62;
It's not a big deal, just that being already on the product page, having a link to that same page makes no sense. It would be great if it could be fixed, but I guess I'ts way too difficult.&#60;/p&#62;
&#60;p&#62;What I would like the most is to hide description field. I tried to figure out where could I use .pp_description { display: none !important; } on woocommerce, but I guess there is no way that I can do it myself.&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "Linkable description on lightbox"</title>
			<link>http://www.kriesi.at/support/topic/linkable-description-on-lightbox#post-88340</link>
			<pubDate>Sat, 15 Dec 2012 14:05:02 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">88340@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;To show a link in the description field &#60;a href=&#34;http://i.imgur.com/cifkT.jpg&#34; rel=&#34;nofollow&#34;&#62;http://i.imgur.com/cifkT.jpg&#60;/a&#62; of prettyPhoto panel as per expanded Wordpress 3.5 functionality (or show an image in the description field) you would need to find line 664 in file /includes/helper-slideshow.php (make a backup of this file in case you make a mistake)&#60;/p&#62;
&#60;p&#62;which looks like&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;if(isset($exif_data[&#38;#39;description&#38;#39;][1])) $desc = strip_tags($exif_data[&#38;#39;description&#38;#39;][1]);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Make sure you are on line 664 , because the file has 3 identical lines with the other two being line numbers 392 and 487 in that file. Do not change 392 and 487.&#60;/p&#62;
&#60;p&#62;please change line 664 to look like&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;if(isset($exif_data[&#38;#39;description&#38;#39;][1])) $desc = $exif_data[&#38;#39;description&#38;#39;][1];&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;That's it! I tested it and works.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Linkable description on lightbox"</title>
			<link>http://www.kriesi.at/support/topic/linkable-description-on-lightbox#post-88307</link>
			<pubDate>Sat, 15 Dec 2012 08:06:36 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">88307@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Paloma,&#60;/p&#62;
&#60;p&#62;Thanks for sharing the info. :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>palomeque on "Linkable description on lightbox"</title>
			<link>http://www.kriesi.at/support/topic/linkable-description-on-lightbox#post-88134</link>
			<pubDate>Thu, 13 Dec 2012 23:34:29 +0000</pubDate>
			<dc:creator>palomeque</dc:creator>
			<guid isPermaLink="false">88134@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I already fixed my problem with hiding description, so don't mind about my second post. &#60;/p&#62;
&#60;p&#62;Just in case anyone needs to know, if you want to hide image description on prettyphoto enlarged image you need to add this code to prettyphoto.css:&#60;/p&#62;
&#60;p&#62;.pp_description {&#60;br /&#62;
display: none !important;&#60;br /&#62;
}
&#60;/p&#62;</description>
		</item>
		<item>
			<title>palomeque on "Linkable description on lightbox"</title>
			<link>http://www.kriesi.at/support/topic/linkable-description-on-lightbox#post-88044</link>
			<pubDate>Thu, 13 Dec 2012 16:21:24 +0000</pubDate>
			<dc:creator>palomeque</dc:creator>
			<guid isPermaLink="false">88044@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi again.&#60;/p&#62;
&#60;p&#62;Until I know how to get clickable descriptions on enlarged images I'd like to hide these descriptions on prettyphoto.&#60;br /&#62;
I tried adding this code to quick css:&#60;/p&#62;
&#60;p&#62;.pp_description {&#60;br /&#62;
    display: none !important;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;But it didn't work =..( Can you tell me what i did wrong?&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>palomeque on "Linkable description on lightbox"</title>
			<link>http://www.kriesi.at/support/topic/linkable-description-on-lightbox#post-88023</link>
			<pubDate>Thu, 13 Dec 2012 14:46:46 +0000</pubDate>
			<dc:creator>palomeque</dc:creator>
			<guid isPermaLink="false">88023@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi you all!&#60;/p&#62;
&#60;p&#62;Last WP update enables links on image description wich is awesome, but... how can I get these image description links to work on prettyphoto lightbox popups?&#60;/p&#62;
&#60;p&#62;Thanks in advanced Paloma.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
