<?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: Caption WITHIN Lightbox window?</title>
		<link>http://www.kriesi.at/support/topic/caption-within-lightbox-window</link>
		<description>Support Forum - Topic: Caption WITHIN Lightbox window?</description>
		<language>en-US</language>
		<pubDate>Thu, 20 Jun 2013 09:58:24 +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/caption-within-lightbox-window" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Beard on "Caption WITHIN Lightbox window?"</title>
			<link>http://www.kriesi.at/support/topic/caption-within-lightbox-window#post-31273</link>
			<pubDate>Sun, 06 Nov 2011 03:06:39 +0000</pubDate>
			<dc:creator>Chris Beard</dc:creator>
			<guid isPermaLink="false">31273@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;br /&#62;
the solutions we provide through this support forum count as official solutions to the issues users experience. You could say it is &#34;unofficial code&#34; and we'd have to agree, but we're here to help you to make it work. If there is a popular demand we'll ask Kriesi to include such options in future releases, though it can take some time for this to happen since there are dozens of requests.&#60;br /&#62;
When a modification doesn't work you can always download the untouched theme again from ThemeForest for free, you won't lose any data by doing this.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>reginato on "Caption WITHIN Lightbox window?"</title>
			<link>http://www.kriesi.at/support/topic/caption-within-lightbox-window#post-31236</link>
			<pubDate>Sat, 05 Nov 2011 13:32:21 +0000</pubDate>
			<dc:creator>reginato</dc:creator>
			<guid isPermaLink="false">31236@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I really can´t  believe that have  there an option to have description and caption within the lightbox window and the theme don´t use it .&#60;/p&#62;
&#60;p&#62;Is ask to much to rewrite some file and put on download to update this premium  theme?&#60;/p&#62;
&#60;p&#62;Is possible solved this problem a.s.a.p. here or via theme forest?&#60;/p&#62;
&#60;p&#62;If i mess the code with this 'unofficial' code and put out of order my site?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Beard on "Caption WITHIN Lightbox window?"</title>
			<link>http://www.kriesi.at/support/topic/caption-within-lightbox-window#post-26898</link>
			<pubDate>Wed, 14 Sep 2011 00:09:56 +0000</pubDate>
			<dc:creator>Chris Beard</dc:creator>
			<guid isPermaLink="false">26898@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey raziegler,&#60;/p&#62;
&#60;p&#62;to remove the text below your images from your portfolio replace&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;$preview = kriesi_build_image(array(&#38;#39;url&#38;#39;=&#38;gt;$preview,
													&#38;#39;height&#38;#39;=&#38;gt; &#38;#39;124&#38;#39;,
													&#38;#39;width&#38;#39;=&#38;gt; &#38;#39;280&#38;#39;,
													&#38;#39;lightbox&#38;#39;=&#38;gt;$lightbox,
													&#38;#39;link&#38;#39;=&#38;gt;$link,
													&#38;#39;link_url&#38;#39;=&#38;gt;$link_url
													));

			if ($boxnumber == 1) echo &#38;#39;&#38;lt;div class=&#38;quot;entry portfolio_entry&#38;quot;&#38;gt;&#38;#39;; ?&#38;gt;

			&#38;lt;div class=&#38;quot;box box_small box&#38;lt;?php echo $boxnumber; ?&#38;gt;&#38;quot;&#38;gt;

				&#38;lt;?php echo $preview; // echo the preview image ?&#38;gt;

				&#38;lt;h3 id=&#38;quot;post-&#38;lt;?php the_ID(); ?&#38;gt;&#38;quot;&#38;gt;&#38;lt;a href=&#38;quot;&#38;lt;?php echo get_permalink() ?&#38;gt;&#38;quot; rel=&#38;quot;bookmark&#38;quot; title=&#38;quot;Permanent Link: &#38;lt;?php the_title(); ?&#38;gt;&#38;quot;&#38;gt;&#38;lt;?php the_title(); ?&#38;gt;&#38;lt;/a&#38;gt;&#38;lt;/h3&#38;gt;
				&#38;lt;?php the_excerpt(); // small excerpt of the post content ?&#38;gt; 

				&#38;lt;a href=&#38;quot;&#38;lt;?php echo get_permalink(); ?&#38;gt;&#38;quot; class=&#38;quot;more-link&#38;quot;&#38;gt;Read more&#38;lt;/a&#38;gt;

			&#38;lt;/div&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;in your template_portfolio.php by&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$preview = kriesi_build_image(array(&#38;#39;url&#38;#39;=&#38;gt;$preview,
													&#38;#39;uri_only&#38;#39;=&#38;gt;true,
													&#38;#39;height&#38;#39;=&#38;gt; &#38;#39;124&#38;#39;,
													&#38;#39;width&#38;#39;=&#38;gt; &#38;#39;280&#38;#39;,
													));

			if ($boxnumber == 1) echo &#38;#39;&#38;lt;div class=&#38;quot;entry portfolio_entry&#38;quot;&#38;gt;&#38;#39;; ?&#38;gt;

			&#38;lt;div class=&#38;quot;box box_small box&#38;lt;?php echo $boxnumber; ?&#38;gt;&#38;quot;&#38;gt;

				&#38;lt;a href=&#38;quot;&#38;lt;?php echo get_permalink() ?&#38;gt;&#38;quot; rel=&#38;quot;bookmark&#38;quot; title=&#38;quot;Permanent Link: &#38;lt;?php the_title(); ?&#38;gt;&#38;quot;&#38;gt;
					&#38;lt;img src=&#38;quot;&#38;lt;?php echo $preview ?&#38;gt;&#38;quot; /&#38;gt;
				&#38;lt;/a&#38;gt;

				&#38;lt;h3 id=&#38;quot;post-&#38;lt;?php the_ID(); ?&#38;gt;&#38;quot;&#38;gt;&#38;lt;a href=&#38;quot;&#38;lt;?php echo get_permalink() ?&#38;gt;&#38;quot; rel=&#38;quot;bookmark&#38;quot; title=&#38;quot;Permanent Link: &#38;lt;?php the_title(); ?&#38;gt;&#38;quot;&#38;gt;&#38;lt;?php the_title(); ?&#38;gt;&#38;lt;/a&#38;gt;&#38;lt;/h3&#38;gt;

			&#38;lt;/div&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;This should do the trick hopefully.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>raziegler on "Caption WITHIN Lightbox window?"</title>
			<link>http://www.kriesi.at/support/topic/caption-within-lightbox-window#post-26808</link>
			<pubDate>Mon, 12 Sep 2011 21:00:56 +0000</pubDate>
			<dc:creator>raziegler</dc:creator>
			<guid isPermaLink="false">26808@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks Dude. I'm not sure how to 'connect it' (NextGen Gallery) to individual portfolio posts using Display Preview Image Options. To clarify: There are several &#34;case studies&#34; I want to show in my portfolio. Each &#34;case study&#34; is an individual wordpress Post. Using the Display Preview Image Options for each post, that means I can have one &#34;Hero Shot&#34; for both Portfolio page (thumbnail image) and individual Post page (medium image) of that case study, and perhaps one more image or video (full-scale image or video) when you click on the &#34;Hero Shot&#34; (medium image). &#60;/p&#62;
&#60;p&#62;I want to have all of the &#34;case studies&#34; thumbnails and titles on one Portfolio page as shown here: &#60;a href=&#34;http://tinyurl.com/3w3s46v&#34; rel=&#34;nofollow&#34;&#62;http://tinyurl.com/3w3s46v&#60;/a&#62;. Nothing new there, except I need to edit that to show only titles (how do I do that?).&#60;/p&#62;
&#60;p&#62;When you click each &#34;case study&#34; it will then take you to the individual Post. I then want to use Pretty Photo when you click on the &#34;Hero Shot&#34; (medium image) at the top of the Post to open up a slideshow for that specific case study... for example, click on the pizza package. When you get to the Post, I'd like to click on that &#34;Hero Shot&#34; (medium image) to open up a slideshow in Pretty Photo with several images which are ONLY for that specific Post, not for other Posts or Pages or the Portfolio page. In other words, open up a whole gallery of images (folder of images?) Not just the one &#34;full scale&#34; image. How can I do this?&#60;/p&#62;
&#60;p&#62;Thank you!!!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Caption WITHIN Lightbox window?"</title>
			<link>http://www.kriesi.at/support/topic/caption-within-lightbox-window#post-26768</link>
			<pubDate>Mon, 12 Sep 2011 06:17:41 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">26768@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;You can use nextgen gallery: &#60;a href=&#34;http://wordpress.org/extend/plugins/nextgen-gallery/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/nextgen-gallery/&#60;/a&#62; and &#34;connect&#34; or link it to prettyphoto by following the instructions here: &#60;a href=&#34;http://www.kriesi.at/support/topic/nextgen-slideshow-conflict-with-customjs#post-14743&#34; rel=&#34;nofollow&#34;&#62;http://www.kriesi.at/support/topic/nextgen-slideshow-conflict-with-customjs#post-14743&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>raziegler on "Caption WITHIN Lightbox window?"</title>
			<link>http://www.kriesi.at/support/topic/caption-within-lightbox-window#post-26741</link>
			<pubDate>Mon, 12 Sep 2011 01:28:48 +0000</pubDate>
			<dc:creator>raziegler</dc:creator>
			<guid isPermaLink="false">26741@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Dude, I'm also wondering if I can extend prettyPhoto to use its option of showing a slideshow, not just a second image... any plans in the works or ideas on how to do this within a Wordpress site? Or is it already possible associating a full gallery?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Caption WITHIN Lightbox window?"</title>
			<link>http://www.kriesi.at/support/topic/caption-within-lightbox-window#post-26649</link>
			<pubDate>Sat, 10 Sep 2011 14:28:13 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">26649@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
(officially) it's not possible at the moment, however an user posted a tweaked javascript code here: &#60;a href=&#34;http://www.kriesi.at/support/topic/pretty-photo-does-not-show-description#post-25464&#34; rel=&#34;nofollow&#34;&#62;http://www.kriesi.at/support/topic/pretty-photo-does-not-show-description#post-25464&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>karoking on "Caption WITHIN Lightbox window?"</title>
			<link>http://www.kriesi.at/support/topic/caption-within-lightbox-window#post-26631</link>
			<pubDate>Fri, 09 Sep 2011 17:44:36 +0000</pubDate>
			<dc:creator>karoking</dc:creator>
			<guid isPermaLink="false">26631@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Further to the above... when I looked at the documentation for &#34;prettyPhoto&#34; lightbox, there is definitely an option to have text within the lightbox window.  Is this something that is just &#34;turned off&#34; with this theme?  Any ideas on how I can get this working?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>karoking on "Caption WITHIN Lightbox window?"</title>
			<link>http://www.kriesi.at/support/topic/caption-within-lightbox-window#post-26574</link>
			<pubDate>Thu, 08 Sep 2011 22:09:49 +0000</pubDate>
			<dc:creator>karoking</dc:creator>
			<guid isPermaLink="false">26574@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Is there a way to place a title and/or caption within a lightbox window (along the bottom perhaps)?  Thanks!
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
