<?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 - User Favorites: manatama</title>
		<link><a href='http://www.kriesi.at/support/profile/manatama'>manatama</a></link>
		<description>Support Forum - User Favorites: manatama</description>
		<language>en-US</language>
		<pubDate>Tue, 21 May 2013 16:48:49 +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/profile/" rel="self" type="application/rss+xml" />

		<item>
			<title>Nick on "Image caption and video caption."</title>
			<link>http://www.kriesi.at/support/topic/image-caption-and-video-caption#post-103324</link>
			<pubDate>Wed, 27 Mar 2013 15:32:29 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">103324@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Devin,&#60;/p&#62;
&#60;p&#62;I thought IE8 is ok with this construct...&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;content: attr(data-caption);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I haven't really looked at other browsers.. Just assumed. hmmm.  Thanks for pointing this out Will do some testing...&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Image caption and video caption."</title>
			<link>http://www.kriesi.at/support/topic/image-caption-and-video-caption#post-103140</link>
			<pubDate>Tue, 26 Mar 2013 12:06:10 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">103140@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey Dhani,&#60;/p&#62;
&#60;p&#62;Just note Nicks solution will have just about zero compatibility with anything other than the latest versions of browsers so keep that in mind if you do any browser testing :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>manatama on "Image caption and video caption."</title>
			<link>http://www.kriesi.at/support/topic/image-caption-and-video-caption#post-103040</link>
			<pubDate>Mon, 25 Mar 2013 23:19:48 +0000</pubDate>
			<dc:creator>manatama</dc:creator>
			<guid isPermaLink="false">103040@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks for your help Nick, I'll try it out.&#60;/p&#62;
&#60;p&#62;Cheers,&#60;br /&#62;
Dhani
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "Image caption and video caption."</title>
			<link>http://www.kriesi.at/support/topic/image-caption-and-video-caption#post-102457</link>
			<pubDate>Thu, 21 Mar 2013 16:16:04 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">102457@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Well if you aren't using the captions anywhere else you can just remove the tags. Please open up /inclues/helper-slideshow.php  and find line 220 that looks like the code below&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;if(!empty($slide[&#38;#39;slideshow_caption&#38;#39;])) $data .= &#38;#39;&#38;lt;div class=&#38;quot;featured_caption&#38;quot;&#38;gt;&#38;#39;.do_shortcode(nl2br($slide[&#38;#39;slideshow_caption&#38;#39;])).&#38;#39;&#38;lt;/div&#38;gt;&#38;#39;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and replace the above line with the two lines below&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;if(!empty($slide[&#38;#39;slideshow_caption&#38;#39;])) $data .= $slide[&#38;#39;slideshow_caption&#38;#39;];
//if(!empty($slide[&#38;#39;slideshow_caption&#38;#39;])) $data .= &#38;#39;&#38;lt;div class=&#38;quot;featured_caption&#38;quot;&#38;gt;&#38;#39;.do_shortcode(nl2br($slide[&#38;#39;slideshow_caption&#38;#39;])).&#38;#39;&#38;lt;/div&#38;gt;&#38;#39;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;----&#60;/p&#62;
&#60;p&#62;If you plan on using the captions elsewhere in the regular format, what I would do is prefix only the captions that you want to show without the html tags with something like %$% and then do a if/else check on line 220 for the presence of %$% inside the string to determine whether to remove the html tags (and %$% from the string). Its a bit hacky but will work.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>manatama on "Image caption and video caption."</title>
			<link>http://www.kriesi.at/support/topic/image-caption-and-video-caption#post-102334</link>
			<pubDate>Wed, 20 Mar 2013 22:51:39 +0000</pubDate>
			<dc:creator>manatama</dc:creator>
			<guid isPermaLink="false">102334@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Nick,&#60;/p&#62;
&#60;p&#62;It kinda works and kinda doesn't.&#60;/p&#62;
&#60;p&#62;It does spit out html tags &#38;lt;div&#38;gt;&#38;lt;/div&#38;gt;&#60;/p&#62;
&#60;p&#62;You can see the example here:&#60;br /&#62;
&#60;a href=&#34;http://www.ds72.com/latest-work/truffle-hunter-game&#34; rel=&#34;nofollow&#34;&#62;http://www.ds72.com/latest-work/truffle-hunter-game&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "Image caption and video caption."</title>
			<link>http://www.kriesi.at/support/topic/image-caption-and-video-caption#post-101008</link>
			<pubDate>Wed, 13 Mar 2013 03:39:30 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">101008@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;You could try something like this with css . Please add it to /css/custom.css or to quick css.&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#top.single-portfolio .featured:after {

    content: attr(data-caption);
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;The thing is, if it has html in there, I don't think it will execute and instead be just spit out as tags.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>manatama on "Image caption and video caption."</title>
			<link>http://www.kriesi.at/support/topic/image-caption-and-video-caption#post-100749</link>
			<pubDate>Tue, 12 Mar 2013 02:52:01 +0000</pubDate>
			<dc:creator>manatama</dc:creator>
			<guid isPermaLink="false">100749@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Devin,&#60;/p&#62;
&#60;p&#62;Thanks for the quick reply and I understand about the Video Caption.&#60;/p&#62;
&#60;p&#62;Is there any quick PHP hack to display each comment of the image array underneath the image?&#60;br /&#62;
This would be a great feature to have for this theme.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Image caption and video caption."</title>
			<link>http://www.kriesi.at/support/topic/image-caption-and-video-caption#post-100630</link>
			<pubDate>Mon, 11 Mar 2013 15:47:30 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">100630@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi manatama,&#60;/p&#62;
&#60;p&#62;For the video caption question, no there will most likely not ever be an option for captions on video simply because of the possibility of causing conflicts with various video services and it displaying properly.&#60;/p&#62;
&#60;p&#62;If you are choosing the no slideshow option, what its doing is just stripping out all of the slideshow code and displaying the images in a somewhat raw format. It would need to be added in as a new feature to make the captions show up along with that kind of output.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Converting Pages to Portfolio Items (Eunoia theme)"</title>
			<link>http://www.kriesi.at/support/topic/converting-pages-to-portfolio-items-eunoia-theme#post-100550</link>
			<pubDate>Mon, 11 Mar 2013 09:42:57 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">100550@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi manatama,&#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>manatama on "Image caption and video caption."</title>
			<link>http://www.kriesi.at/support/topic/image-caption-and-video-caption#post-100495</link>
			<pubDate>Mon, 11 Mar 2013 00:02:45 +0000</pubDate>
			<dc:creator>manatama</dc:creator>
			<guid isPermaLink="false">100495@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Kriesi,&#60;/p&#62;
&#60;p&#62;Is there any way for the No Slideshow option / Display images below each other, to have the image's caption below each image?&#60;/p&#62;
&#60;p&#62;At the moment if I choose to have no slideshow, e.g. in the portfolio item, it would just display images one after another and missing the caption for each image.&#60;/p&#62;
&#60;p&#62;Will there be a fix for a video caption as well?&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>manatama on "Converting Pages to Portfolio Items (Eunoia theme)"</title>
			<link>http://www.kriesi.at/support/topic/converting-pages-to-portfolio-items-eunoia-theme#post-100491</link>
			<pubDate>Sun, 10 Mar 2013 23:51:33 +0000</pubDate>
			<dc:creator>manatama</dc:creator>
			<guid isPermaLink="false">100491@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks Dude, works like a charm!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Converting Pages to Portfolio Items (Eunoia theme)"</title>
			<link>http://www.kriesi.at/support/topic/converting-pages-to-portfolio-items-eunoia-theme#post-93374</link>
			<pubDate>Fri, 25 Jan 2013 09:39:43 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">93374@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey! &#60;/p&#62;
&#60;p&#62; You can try a plugin like &#60;a href=&#34;http://wordpress.org/extend/plugins/post-type-converter/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/post-type-converter/&#60;/a&#62; (or you can use another plugin from here: &#60;a href=&#34;http://wordpress.org/extend/plugins/search.php?q=post+type+converter&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/search.php?q=post+type+converter&#60;/a&#62; ). Please make a database backup before you try to convert your post types.&#60;/p&#62;
&#60;p&#62; Regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>manatama on "Converting Pages to Portfolio Items (Eunoia theme)"</title>
			<link>http://www.kriesi.at/support/topic/converting-pages-to-portfolio-items-eunoia-theme#post-93340</link>
			<pubDate>Fri, 25 Jan 2013 04:42:49 +0000</pubDate>
			<dc:creator>manatama</dc:creator>
			<guid isPermaLink="false">93340@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Kriesi,&#60;/p&#62;
&#60;p&#62;I've created my portfolio item as single page.&#60;/p&#62;
&#60;p&#62;Now I'm using your theme (Eunoia theme) and would like to get the portfolio aggregator working.&#60;/p&#62;
&#60;p&#62;1. Is there any way to convert the pages as a portfolio item?&#60;/p&#62;
&#60;p&#62;2. If not, do I have to copy and paste the page content to a new portfolio item to re-create them?&#60;/p&#62;
&#60;p&#62;3. If it is number 2, what about the linkback that I've got from other sites which becomes comments on the pages?&#60;br /&#62;
Will I loose them or can I move them as well? As long as the url stays the same?&#60;/p&#62;
&#60;p&#62;Thanks!&#60;br /&#62;
Dhani
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
