<?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: I want to disable your lightbox function in Display Theme</title>
		<link>http://www.kriesi.at/support/topic/i-want-to-disable-your-lightbox-function-in-display-theme</link>
		<description>Support Forum - Topic: I want to disable your lightbox function in Display Theme</description>
		<language>en-US</language>
		<pubDate>Tue, 21 May 2013 12:39:35 +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/i-want-to-disable-your-lightbox-function-in-display-theme" rel="self" type="application/rss+xml" />

		<item>
			<title>7websitedesign on "I want to disable your lightbox function in Display Theme"</title>
			<link>http://www.kriesi.at/support/topic/i-want-to-disable-your-lightbox-function-in-display-theme#post-66761</link>
			<pubDate>Fri, 20 Jul 2012 13:35:31 +0000</pubDate>
			<dc:creator>7websitedesign</dc:creator>
			<guid isPermaLink="false">66761@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;That did the trick. Thanks so much for the EXCELLENT support for the Display template!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "I want to disable your lightbox function in Display Theme"</title>
			<link>http://www.kriesi.at/support/topic/i-want-to-disable-your-lightbox-function-in-display-theme#post-66734</link>
			<pubDate>Fri, 20 Jul 2012 09:39:37 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">66734@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;Find this code on the same file.&#60;/p&#62;
&#60;p&#62;&#60;code&#62;my_lightbox(&#38;quot;a[rel^=&#38;#39;prettyPhoto&#38;#39;], a[rel^=&#38;#39;lightbox&#38;#39;]&#38;quot;);&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Replace it with&#60;/p&#62;
&#60;p&#62;&#60;code&#62;//my_lightbox(&#38;quot;a[rel^=&#38;#39;prettyPhoto&#38;#39;], a[rel^=&#38;#39;lightbox&#38;#39;]&#38;quot;);&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>7websitedesign on "I want to disable your lightbox function in Display Theme"</title>
			<link>http://www.kriesi.at/support/topic/i-want-to-disable-your-lightbox-function-in-display-theme#post-66669</link>
			<pubDate>Fri, 20 Jul 2012 03:44:22 +0000</pubDate>
			<dc:creator>7websitedesign</dc:creator>
			<guid isPermaLink="false">66669@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Ok, did that but when I removed it, both the pretty photo and wp-jquery-lightbox both quit working.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "I want to disable your lightbox function in Display Theme"</title>
			<link>http://www.kriesi.at/support/topic/i-want-to-disable-your-lightbox-function-in-display-theme#post-65748</link>
			<pubDate>Mon, 16 Jul 2012 00:57:45 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">65748@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;/p&#62;
&#60;p&#62;Open js &#38;gt; custom.js then remove this code&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function my_lightbox($elements)
{
jQuery(&#38;#39;.gallery-item a&#38;#39;).attr(&#38;#39;rel&#38;#39;,&#38;#39;lightbox[grouped]&#38;#39;);

jQuery($elements).prettyPhoto({
		&#38;quot;theme&#38;quot;: &#38;#39;light_square&#38;#39; /* light_rounded / dark_rounded / light_square / dark_square */
	});

jQuery($elements).each(function()
{
	var $image = jQuery(this).contents(&#38;quot;img&#38;quot;);
	$newclass = &#38;#39;lightbox_video&#38;#39;;

	if(jQuery(this).attr(&#38;#39;href&#38;#39;).match(/(jpg&#124;gif&#124;jpeg&#124;png&#124;tif)/)) $newclass = &#38;#39;lightbox_image&#38;#39;;

	if ($image.length &#38;gt; 0)
	{
		if(jQuery.browser.msie &#38;amp;&#38;amp;  jQuery.browser.version &#38;lt; 7) jQuery(this).addClass(&#38;#39;ie6_lightbox&#38;#39;);

		var $bg = jQuery(&#38;quot;&#38;lt;span class=&#38;#39;&#38;quot;+$newclass+&#38;quot; ie6fix&#38;#39;&#38;gt;&#38;lt;/span&#38;gt;&#38;quot;).appendTo(jQuery(this));

		jQuery(this).bind(&#38;#39;mouseenter&#38;#39;, function(){
			$height = $image.height();
			$width = $image.width();
			$pos =  $image.position();
			$bg.css({height:$height, width:$width, top:$pos.top, left:$pos.left});
		});
	}

});	

jQuery($elements).contents(&#38;quot;img&#38;quot;).hover(function(){
		jQuery(this).stop().animate({opacity:0.5},400);
		},function(){
		jQuery(this).stop().animate({opacity:1},400);
		});

}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>7websitedesign on "I want to disable your lightbox function in Display Theme"</title>
			<link>http://www.kriesi.at/support/topic/i-want-to-disable-your-lightbox-function-in-display-theme#post-65607</link>
			<pubDate>Sat, 14 Jul 2012 19:47:16 +0000</pubDate>
			<dc:creator>7websitedesign</dc:creator>
			<guid isPermaLink="false">65607@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I want to use a different plugin for my lightbox instead of pretty photo. Currently I have installed wp-jquery-lightbox and I am getting TWO seperate lightboxes on a photo gallery.http://johnsoncountytnchamber.org/red-tail-golf-course/  Help!
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
