<?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: 3.5 - Recent Posts</title>
		<link>http://www.kriesi.at/support/tags/35</link>
		<description>Support Forum - Tag: 3.5 - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Sun, 19 May 2013 23:18:09 +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/35" rel="self" type="application/rss+xml" />

		<item>
			<title>Dude on "Changes to &#34;Set as featured image&#34; after update to WordPress 3.5"</title>
			<link>http://www.kriesi.at/support/topic/changes-to-set-as-featured-image-after-update-to-wordpress-35#post-93370</link>
			<pubDate>Fri, 25 Jan 2013 09:33:38 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">93370@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi! &#60;/p&#62;
&#60;p&#62; Yes, Kriesi will release an update for Abundance soon (probably next week). &#60;/p&#62;
&#60;p&#62; Best regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dcholth on "Changes to &#34;Set as featured image&#34; after update to WordPress 3.5"</title>
			<link>http://www.kriesi.at/support/topic/changes-to-set-as-featured-image-after-update-to-wordpress-35#post-93259</link>
			<pubDate>Thu, 24 Jan 2013 15:54:30 +0000</pubDate>
			<dc:creator>dcholth</dc:creator>
			<guid isPermaLink="false">93259@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I'm using the Angular theme and have the same problem.  Could you post a solution for that theme as well?  (Or better yet, provide a new update for the themes where this is an issue).
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Wordpress 3.5 Upgrade"</title>
			<link>http://www.kriesi.at/support/topic/wordpress-35-upgrade#post-92568</link>
			<pubDate>Mon, 21 Jan 2013 08:06:38 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">92568@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi! &#60;/p&#62;
&#60;p&#62; Yes, you can use the more quicktag: &#60;a href=&#34;http://codex.wordpress.org/Customizing_the_Read_More&#34; rel=&#34;nofollow&#34;&#62;http://codex.wordpress.org/Customizing_the_Read_More&#60;/a&#62; , &#60;a href=&#34;http://en.support.wordpress.com/splitting-content/more-tag/&#34; rel=&#34;nofollow&#34;&#62;http://en.support.wordpress.com/splitting-content/more-tag/&#60;/a&#62; to split your content into an excerpt and full version. &#60;/p&#62;
&#60;p&#62; Best regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>IndigoVisuals on "Wordpress 3.5 Upgrade"</title>
			<link>http://www.kriesi.at/support/topic/wordpress-35-upgrade#post-92270</link>
			<pubDate>Fri, 18 Jan 2013 17:35:00 +0000</pubDate>
			<dc:creator>IndigoVisuals</dc:creator>
			<guid isPermaLink="false">92270@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey Dude, &#60;/p&#62;
&#60;p&#62;I upload the files the way you suggested and it works again! Many thanks. One more quick question. Is there a way to limit the paragraph lengths in the three &#34;featured posts&#34; on the home page. I would like to be able to tell the when to display the &#34;More&#34; link. That way I can limit the vertical size of the home page.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Changes to &#34;Set as featured image&#34; after update to WordPress 3.5"</title>
			<link>http://www.kriesi.at/support/topic/changes-to-set-as-featured-image-after-update-to-wordpress-35#post-91550</link>
			<pubDate>Mon, 14 Jan 2013 19:15:14 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">91550@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Final Fix:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;You can do one of two things now, completely comment out that function so that it doesn&#38;#39;t take effect at all and then add the following to your functions.php: 

add_theme_support( &#38;#39;post-thumbnails&#38;#39; );

Or, change that function to:
//remove post thumbnails from pages, posts and various custom post types
if(!function_exists(&#38;#39;avia_remove_post_thumbnails&#38;#39;))
{
    add_theme_support( &#38;#39;post-thumbnails&#38;#39; );

//    add_action(&#38;#39;posts_selection&#38;#39;, &#38;#39;avia_remove_post_thumbnails&#38;#39;);
//    add_action(&#38;#39;init&#38;#39;, &#38;#39;avia_remove_post_thumbnails&#38;#39;);
//    add_filter(&#38;#39;post_updated_messages&#38;#39;,&#38;#39;avia_remove_post_thumbnails&#38;#39;);
//    function avia_remove_post_thumbnails($msg)
//    {
//        global $post_type;
//        $remove_when = array(&#38;#39;post&#38;#39;,&#38;#39;page&#38;#39;,&#38;#39;portfolio&#38;#39;);
//
//        if(is_admin())
//        {
//            foreach($remove_when as $remove)
//            {
//                if($post_type == $remove &#124;&#124; (isset($_GET[&#38;#39;post_type&#38;#39;]) &#38;amp;&#38;amp; $_GET[&#38;#39;post_type&#38;#39;] == $remove)) { remove_theme_support( &#38;#39;post-thumbnails&#38;#39; ); };
//            }
//        }
//
//        return $msg;
//    }
}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>Devin on "Changes to &#34;Set as featured image&#34; after update to WordPress 3.5"</title>
			<link>http://www.kriesi.at/support/topic/changes-to-set-as-featured-image-after-update-to-wordpress-35#post-91168</link>
			<pubDate>Fri, 11 Jan 2013 17:28:16 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">91168@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey Brian,&#60;/p&#62;
&#60;p&#62;Create an admin account for me and I'll log in and take a look. &#60;/p&#62;
&#60;p&#62;You can send the information to my email at DevinVinson (at) gmail.com. Make sure to include a link to this topic so that my spam filter doesn't grab it :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>wildrays on "Changes to &#34;Set as featured image&#34; after update to WordPress 3.5"</title>
			<link>http://www.kriesi.at/support/topic/changes-to-set-as-featured-image-after-update-to-wordpress-35#post-91164</link>
			<pubDate>Fri, 11 Jan 2013 17:13:36 +0000</pubDate>
			<dc:creator>wildrays</dc:creator>
			<guid isPermaLink="false">91164@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hmm, I don't know what is happening. I'm definitely using WordPress 3.5 and Coherence 1.3. I'm going into functions-coherence.php and commenting out lines:&#60;br /&#62;
&#60;img src=&#34;http://www.6288designs.com/code-ss.png&#34; /&#62;&#60;/p&#62;
&#60;p&#62;Then the thumbnails in the Recent Posts widget are gone and I don't see the Set Featured Image option:&#60;br /&#62;
&#60;img src=&#34;http://www.6288designs.com/recent-posts-ss.png&#34; /&#62;&#60;br /&#62;
&#60;img src=&#34;http://www.6288designs.com/add-media-ss.png&#34; /&#62;&#60;/p&#62;
&#60;p&#62;I'll have to keep looking into it. I can't keep the &#34;mistakes&#34; live, so functions-coherence.php is back to normal state right now. The site:&#60;br /&#62;
&#60;a href=&#34;http://www.mwv-icefest.com&#34; rel=&#34;nofollow&#34;&#62;http://www.mwv-icefest.com&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Am I changing the right lines in functions-coherence.php?&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Brian
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Changes to &#34;Set as featured image&#34; after update to WordPress 3.5"</title>
			<link>http://www.kriesi.at/support/topic/changes-to-set-as-featured-image-after-update-to-wordpress-35#post-91138</link>
			<pubDate>Fri, 11 Jan 2013 15:16:48 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">91138@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey Brian,&#60;/p&#62;
&#60;p&#62;I just tested on Wordpress 3.5 and Coherence 1.3 and didn't have any issues with the Recent Post widget and was able to get the Set Featured Image using the new media editor.&#60;/p&#62;
&#60;p&#62;Go to Add Media:&#60;br /&#62;
&#60;img src=&#34;http://i50.tinypic.com/9swb36.png&#34;&#62;&#60;/p&#62;
&#60;p&#62;Just under the Create Gallery option you should now see the Set Featured Image like below&#60;br /&#62;
&#60;img src=&#34;http://i49.tinypic.com/2qwo5dh.png&#34;&#62;&#60;/p&#62;
&#60;p&#62;If you are still having issues with the Recent Posts widget try re-adding it to the widget area you want it to show. Additionally, you could try going into the recent posts its displaying and making sure it has an image set for it.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>wildrays on "Changes to &#34;Set as featured image&#34; after update to WordPress 3.5"</title>
			<link>http://www.kriesi.at/support/topic/changes-to-set-as-featured-image-after-update-to-wordpress-35#post-91071</link>
			<pubDate>Thu, 10 Jan 2013 23:55:57 +0000</pubDate>
			<dc:creator>wildrays</dc:creator>
			<guid isPermaLink="false">91071@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I'm using the latest version of Coherence (1.3) and that section of code is actually on lines 324-347 as well. I followed the direction to comment out, it removed all the thumbnails from the recent posts widget (which I don't want) and I didn't see the &#34;set featured image&#34; option return to the &#34;Add Media&#34; area.&#60;/p&#62;
&#60;p&#62;Thoughts? Thanks for your help,&#60;/p&#62;
&#60;p&#62;Brian
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Changes to &#34;Set as featured image&#34; after update to WordPress 3.5"</title>
			<link>http://www.kriesi.at/support/topic/changes-to-set-as-featured-image-after-update-to-wordpress-35#post-91050</link>
			<pubDate>Thu, 10 Jan 2013 21:12:19 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">91050@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey wildrays,&#60;/p&#62;
&#60;p&#62;This was just pointed out to me earlier today actually :)&#60;/p&#62;
&#60;p&#62;I made this post for Choices but it should hold the same for Coherence though the function starts on line 297 in functions-coherence.php.&#60;/p&#62;
&#60;p&#62;**removed**&#60;/p&#62;
&#60;p&#62;If for some reason this does not work for you, can you post here and let me know. Otherwise I'll add this as a sticky to each of the applicable theme forums this evening.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>wildrays on "Changes to &#34;Set as featured image&#34; after update to WordPress 3.5"</title>
			<link>http://www.kriesi.at/support/topic/changes-to-set-as-featured-image-after-update-to-wordpress-35#post-91026</link>
			<pubDate>Thu, 10 Jan 2013 17:51:26 +0000</pubDate>
			<dc:creator>wildrays</dc:creator>
			<guid isPermaLink="false">91026@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I just updated a site using Coherence to WordPress 3.5 and it looks like the easy method in the Add Media editor to &#34;Set as featured image&#34; is gone. I did a search and found some other threads about this. &#60;/p&#62;
&#60;p&#62;One of the solutions was to add one image to the slideshow and it would be set as the featured image (to show as thumbnail in recent posts widget) and not show as a slide in the blog overview or single post. This worked for setting a thumbnail, but the one added photo also showed as a slide in the blog overview and single post. What I did to correct this was remove the photo from the slideshow, so this removed the slide from the blog overview and single post, and kept the featured thumbnail. &#60;/p&#62;
&#60;p&#62;This is a solution, but required extra steps and isn't intuitive to users. Will there or could there be an update or code modification to Coherence so that a single step to &#34;set as featured image&#34; will work?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Slider disaperated"</title>
			<link>http://www.kriesi.at/support/topic/slider-disaperated#post-90669</link>
			<pubDate>Tue, 08 Jan 2013 21:36:53 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">90669@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey ncux,&#60;/p&#62;
&#60;p&#62;Thanks for the followup and sorry it took so much to finally find a fix that worked for you. Will keep this noted on my end as well for others.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ncux on "Slider disaperated"</title>
			<link>http://www.kriesi.at/support/topic/slider-disaperated#post-90660</link>
			<pubDate>Tue, 08 Jan 2013 20:51:06 +0000</pubDate>
			<dc:creator>ncux</dc:creator>
			<guid isPermaLink="false">90660@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Yeah, I just deleted my whole site after accounting this bug: if menu is named using Cyrillic, shortcodes act funny (sidebar_tab disappeared).&#60;br /&#62;
Tried everything, nothing helped. Deleted whole site, fresh install of WP, everything worked until I named a menu.&#60;br /&#62;
Looked for a solution here, didn't find any... but now it's definite.&#60;br /&#62;
So please mark this as a solution. &#60;/p&#62;
&#60;p&#62;Weird thing is: it disappeared by itself all of a sudden. Seems like remote jQuery was altered in 3.5?&#60;br /&#62;
It was working earlier today, but then it just disappeared after update to 3.5..
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Few remaining issues"</title>
			<link>http://www.kriesi.at/support/topic/few-remaining-issues#post-90485</link>
			<pubDate>Tue, 08 Jan 2013 08:04:25 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">90485@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi DorryFunaki,&#60;/p&#62;
&#60;p&#62;Glad we could help. :)&#60;/p&#62;
&#60;p&#62;Cheers,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>DorryFunaki on "Few remaining issues"</title>
			<link>http://www.kriesi.at/support/topic/few-remaining-issues#post-90421</link>
			<pubDate>Mon, 07 Jan 2013 19:10:07 +0000</pubDate>
			<dc:creator>DorryFunaki</dc:creator>
			<guid isPermaLink="false">90421@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Perfect!  Thank you both so much!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Few remaining issues"</title>
			<link>http://www.kriesi.at/support/topic/few-remaining-issues#post-90319</link>
			<pubDate>Mon, 07 Jan 2013 08:06:00 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">90319@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey! &#60;/p&#62;
&#60;p&#62; Please add following code to css/custom.css or the quick css field:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;#top.home .slideshow_container ul{
height: 300px !important;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62; Best regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>DorryFunaki on "Few remaining issues"</title>
			<link>http://www.kriesi.at/support/topic/few-remaining-issues#post-90309</link>
			<pubDate>Mon, 07 Jan 2013 05:05:41 +0000</pubDate>
			<dc:creator>DorryFunaki</dc:creator>
			<guid isPermaLink="false">90309@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Ismael,&#60;/p&#62;
&#60;p&#62;I made the change to functions.php, but my home page slideshow images are still lengthening slightly:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://argcs.com/test/&#34; rel=&#34;nofollow&#34;&#62;http://argcs.com/test/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Any other thoughts?&#60;/p&#62;
&#60;p&#62;Thank you so much!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Few remaining issues"</title>
			<link>http://www.kriesi.at/support/topic/few-remaining-issues#post-90302</link>
			<pubDate>Mon, 07 Jan 2013 02:50:18 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">90302@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Check functions.php and find this code&#60;/p&#62;
&#60;p&#62;&#60;code&#62;$avia_config[&#38;#39;imgSize&#38;#39;][&#38;#39;fullsize&#38;#39;] 		 	= array(&#38;#39;width&#38;#39;=&#38;gt;990, &#38;#39;height&#38;#39;=&#38;gt;990, &#38;#39;crop&#38;#39;=&#38;gt;false);			// big images for lightbox and portfolio single entries&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Change the height then change crop to true. Something like this &#60;/p&#62;
&#60;p&#62;&#60;code&#62;$avia_config[&#38;#39;imgSize&#38;#39;][&#38;#39;fullsize&#38;#39;] 		 	= array(&#38;#39;width&#38;#39;=&#38;gt;990, &#38;#39;height&#38;#39;=&#38;gt;300, &#38;#39;crop&#38;#39;=&#38;gt;true);			// big images for lightbox and portfolio single entries&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;This will crop all of the portfolio images to 990px wide and 300px high. Don't forget to regenerate thumbnails.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>DorryFunaki on "Few remaining issues"</title>
			<link>http://www.kriesi.at/support/topic/few-remaining-issues#post-90282</link>
			<pubDate>Sun, 06 Jan 2013 20:58:45 +0000</pubDate>
			<dc:creator>DorryFunaki</dc:creator>
			<guid isPermaLink="false">90282@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Great, thank you!  I resolved the images being broken--these were all images that were double-booked to multiple pages, so I uploaded a page-specific image for each.  &#60;/p&#62;
&#60;p&#62;Do you have any thoughts on the  height issue for images--is there a functions.php edit to hard crop the bottoms so that they don't slide down slightly for some larger images (that's not a browser issue as far as I can tell...)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Few remaining issues"</title>
			<link>http://www.kriesi.at/support/topic/few-remaining-issues#post-90258</link>
			<pubDate>Sun, 06 Jan 2013 10:40:11 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">90258@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi DorryFunaki,&#60;/p&#62;
&#60;p&#62;For the cut images on the last row (when I checked it, the images aren't cut but the labels on the last row didn't show up), kindly add this code to your Quick CSS or custom.css:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.portfolio-sort-container.isotope {
   overflow: visible !important;
   padding-bottom: 32px;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;The slideshow on your homepage seems to be same in dimension on my end. Kindly clear your browser cache. :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Wordpress 3.5 Upgrade"</title>
			<link>http://www.kriesi.at/support/topic/wordpress-35-upgrade#post-90251</link>
			<pubDate>Sun, 06 Jan 2013 09:42:51 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">90251@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;In this case try to install the theme manually. Use a ftp client like filezilla to access your server directories - navigate to wp-content/themes and upload the uncompressed display theme folder into this folder. I'd make a backup of the &#34;old&#34; theme folder first (eg rename display to display_bak and upload the new theme files).
&#60;/p&#62;</description>
		</item>
		<item>
			<title>DorryFunaki on "Few remaining issues"</title>
			<link>http://www.kriesi.at/support/topic/few-remaining-issues#post-90230</link>
			<pubDate>Sun, 06 Jan 2013 01:06:32 +0000</pubDate>
			<dc:creator>DorryFunaki</dc:creator>
			<guid isPermaLink="false">90230@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Edited: I figured out how to revive the site after accidentally killing it.  Rather than kill it again but messing around with something I don't actually understand, I should probably ask first.  I would like images on my home page slideshow to be the same height.  As of now they have tiny variations so the image lengthens slightly when the image changes.  I have tried to resize them individually and reload, but I'm still having the problem.  I know it's possible to hardcrop, but my efforts to do this in functions.php failed miserably!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>DorryFunaki on "Few remaining issues"</title>
			<link>http://www.kriesi.at/support/topic/few-remaining-issues#post-90224</link>
			<pubDate>Sat, 05 Jan 2013 22:44:06 +0000</pubDate>
			<dc:creator>DorryFunaki</dc:creator>
			<guid isPermaLink="false">90224@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Never mind on issue 2 (thumbnails in slideshow)--I see that has recently been addressed.  The others I would still love some feedback on.  Thank you!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>DorryFunaki on "Few remaining issues"</title>
			<link>http://www.kriesi.at/support/topic/few-remaining-issues#post-90222</link>
			<pubDate>Sat, 05 Jan 2013 21:15:48 +0000</pubDate>
			<dc:creator>DorryFunaki</dc:creator>
			<guid isPermaLink="false">90222@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello and happy new year to everyone!  I hope that you had a good holiday.&#60;/p&#62;
&#60;p&#62;There are a few little things that I am hoping to get some help with.  The first--I added custom .css to reduce the space between portfolio items so that the titles displayed as a hover effect, but the title of the last row of items is now cut off.  Any thoughts on how to fix this?&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.argcs.com/test/projects/&#34; rel=&#34;nofollow&#34;&#62;http://www.argcs.com/test/projects/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Next, is there a way to display the slideshow images as thumbnails under the current displayed image in the portfolio items?&#60;/p&#62;
&#60;p&#62;Finally, I have noticed recently that some photos appear broken--but then in another browser or computer they will look fine.  It's persistently the same photos, although I haven't yet been able to find a common thread of where they look fine and where they don't.  They will look fine in Chrome on one computer, but appear broken in Chrome on another computer.  Do I need to just delete them from the media library and upload?  Would you recommend uploading to the media library first or uploading from the individual pages (I have upgraded to Wordpress 3.5).&#60;/p&#62;
&#60;p&#62;Finally, this is probably not a theme issue, but when I upgraded to WP 3.5, it no longer works on my netbook (or my husband's).  I can't upload any images or edit any pages, although the site itself looks fine.  I can use the site fine on my desktop computer at work, but at home I'm stumped.  I tried disabling all plugins (I only had jetpack running in any case), but no dice.&#60;/p&#62;
&#60;p&#62;Thank you for your help!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>IndigoVisuals on "Wordpress 3.5 Upgrade"</title>
			<link>http://www.kriesi.at/support/topic/wordpress-35-upgrade#post-90197</link>
			<pubDate>Sat, 05 Jan 2013 16:04:10 +0000</pubDate>
			<dc:creator>IndigoVisuals</dc:creator>
			<guid isPermaLink="false">90197@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks Devin! When I try the second ZIP it still fails but now it's because there is already a theme with the same name. Is there a simple way to upgrade that won't jack up my site? I'm a bit of a noob. I know I could delete my current version but that makes me nervous. Any help would be greatly appreciated!&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Wordpress 3.5 Upgrade"</title>
			<link>http://www.kriesi.at/support/topic/wordpress-35-upgrade#post-90091</link>
			<pubDate>Fri, 04 Jan 2013 18:26:43 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">90091@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;The package you download from themeforest should be a single large zip file. You'll need to first unzip that file and then inside it should be another file called Display.zip (or just Display but its a zipped file). &#60;/p&#62;
&#60;p&#62;That second file is the actual theme file.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>IndigoVisuals on "Wordpress 3.5 Upgrade"</title>
			<link>http://www.kriesi.at/support/topic/wordpress-35-upgrade#post-90089</link>
			<pubDate>Fri, 04 Jan 2013 18:19:22 +0000</pubDate>
			<dc:creator>IndigoVisuals</dc:creator>
			<guid isPermaLink="false">90089@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Devin, &#60;/p&#62;
&#60;p&#62;I tried I downloaded the &#34;Display&#34; package again from Theme Forest and tried to install the Theme and it said it failed because it was missing file &#34;style.css.&#34; I tried downloading it and installing on both a PC and a MAC and the same thing happened.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Wordpress 3.5 Upgrade"</title>
			<link>http://www.kriesi.at/support/topic/wordpress-35-upgrade#post-90001</link>
			<pubDate>Fri, 04 Jan 2013 04:02:46 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">90001@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi IndigoVisuals,&#60;/p&#62;
&#60;p&#62;What didn't you get when you downloaded from Themeforest? Can you try re-downloading the whole package again.&#60;/p&#62;
&#60;p&#62;You'll definitely need to be on 2.0.3 so that we are working with the same version.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>IndigoVisuals on "Wordpress 3.5 Upgrade"</title>
			<link>http://www.kriesi.at/support/topic/wordpress-35-upgrade#post-89993</link>
			<pubDate>Fri, 04 Jan 2013 03:25:18 +0000</pubDate>
			<dc:creator>IndigoVisuals</dc:creator>
			<guid isPermaLink="false">89993@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I had a problem but I am on Display 1.4. I tried to upgrade &#34;Display&#34; but the download package on Themeforest doesn't come with all of the files. I tried to install and it failed. The issue I had upgrading was that in my video portfolio, anytime you click on a video it takes the whole page to YouTube instead of opening in the lightbox even I changed nothing in the Display controls.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Wordpress 3.5 Upgrade"</title>
			<link>http://www.kriesi.at/support/topic/wordpress-35-upgrade#post-89309</link>
			<pubDate>Sat, 22 Dec 2012 07:55:28 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">89309@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi! &#60;/p&#62;
&#60;p&#62; We didn't receive any bug reports regarding the incompatibility with WP3.5 yet. Thus Display 2.0.3 should be compatible with WP3.5. &#60;/p&#62;
&#60;p&#62; Best regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
