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

		<item>
			<title>Nick on "Related Entries pulls same portfolio items"</title>
			<link>http://www.kriesi.at/support/topic/related-entries-pulls-same-portfolio-items#post-108566</link>
			<pubDate>Fri, 03 May 2013 00:41:52 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">108566@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;One more thing. Please compress your images. For example - this image &#60;a href=&#34;http://christinamrozik.com/wp-content/uploads/2013/01/600x698-450x525.png&#34; rel=&#34;nofollow&#34;&#62;http://christinamrozik.com/wp-content/uploads/2013/01/600x698-450x525.png&#60;/a&#62; is 613K (an image of this type should not be png anyways but a jpg) but even if you keep it as a png and run it through a lossless compressor (which Photoshop doesn't use) , it will come out 186K, a 70% reduction without any difference in the way it looks&#60;/p&#62;
&#60;p&#62;( &#60;a href=&#34;http://tinypng.org/&#34; rel=&#34;nofollow&#34;&#62;http://tinypng.org/&#60;/a&#62; ) See for yourself. ... When you add up all the images on the homepage, after optimizing the page will be a few megs smaller, a very significant reduction in load time (especially on mobile devices). &#60;/p&#62;
&#60;p&#62;You can also install this free app on your desktop &#60;a href=&#34;http://pnggauntlet.com/&#34; rel=&#34;nofollow&#34;&#62;http://pnggauntlet.com/&#60;/a&#62; , which will optimize all images in a folder.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Related Entries pulls same portfolio items"</title>
			<link>http://www.kriesi.at/support/topic/related-entries-pulls-same-portfolio-items#post-108276</link>
			<pubDate>Wed, 01 May 2013 20:51:48 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">108276@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;/p&#62;
&#60;p&#62;Glad it worked. :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>andreanapier1985 on "Related Entries pulls same portfolio items"</title>
			<link>http://www.kriesi.at/support/topic/related-entries-pulls-same-portfolio-items#post-108267</link>
			<pubDate>Wed, 01 May 2013 20:17:54 +0000</pubDate>
			<dc:creator>andreanapier1985</dc:creator>
			<guid isPermaLink="false">108267@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;BTW, this works great!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "Related Entries pulls same portfolio items"</title>
			<link>http://www.kriesi.at/support/topic/related-entries-pulls-same-portfolio-items#post-107536</link>
			<pubDate>Sat, 27 Apr 2013 10:24:09 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">107536@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;For the Blog posts, relations are defined by tags: if post tags match, the post will be displayed as related. For portfolio items, it is based on categories. &#60;/p&#62;
&#60;p&#62;This is the query used on  line 52 of related-posts.php&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;$my_query = new WP_Query(array(&#38;#39;portfolio_entries&#38;#39;=&#38;gt;$tag_ids, &#38;#39;showposts&#38;#39;=&#38;gt;$postcount, &#38;#39;ignore_sticky_posts&#38;#39;=&#38;gt;1, &#38;#39;orderby&#38;#39;=&#38;gt;&#38;#39;rand&#38;#39;, &#38;#39;post__not_in&#38;#39; =&#38;gt; array( $this_id ) ) );&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Please try adding this code to line 51&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;remove_all_filters(&#38;#39;posts_orderby&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and see if some different sequences start showing up. Adding more categories won't do much since it selects them always in the same order, alphabetically probably.&#60;/p&#62;
&#60;p&#62;You can take a look at what's available  and what is done &#60;a href=&#34;http://wordpress.org/extend/plugins/search.php?q=related&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/search.php?q=related&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Niick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>andreanapier1985 on "Related Entries pulls same portfolio items"</title>
			<link>http://www.kriesi.at/support/topic/related-entries-pulls-same-portfolio-items#post-107289</link>
			<pubDate>Thu, 25 Apr 2013 21:50:21 +0000</pubDate>
			<dc:creator>andreanapier1985</dc:creator>
			<guid isPermaLink="false">107289@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;In the related entries section on the bottom of the portfolio page it pulls the same four entries in every category.  It keeps potential clients in this perpetual loop of the same four or five entries.  Is there any way to diversify which items are chosen as a related entry?  If I added more categories or tags would it choose a different group of related entries?&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://christinamrozik.com/&#34; rel=&#34;nofollow&#34;&#62;http://christinamrozik.com/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "Use only grayscale thumbnails throughout Choices theme?"</title>
			<link>http://www.kriesi.at/support/topic/use-only-grayscale-thumbnails-throughout-choices-theme#post-105489</link>
			<pubDate>Sun, 14 Apr 2013 05:44:55 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">105489@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Can you try uploading a brand new image just to test because sometimes low wordpress memory prevents the regeneration from taking place though nothing is shown to make the user aware that it didn't work.&#60;/p&#62;
&#60;p&#62;Also are you using the latest version of the theme since for me using version 1.7 , , its line 79 that has the slider_thumb image size defines in functions.php&#60;/p&#62;
&#60;p&#62;Do you have a url where I may look, you can mask it with &#60;a href=&#34;http://www.goo.gl&#34; rel=&#34;nofollow&#34;&#62;http://www.goo.gl&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dishdesigner on "Use only grayscale thumbnails throughout Choices theme?"</title>
			<link>http://www.kriesi.at/support/topic/use-only-grayscale-thumbnails-throughout-choices-theme#post-105340</link>
			<pubDate>Fri, 12 Apr 2013 21:06:09 +0000</pubDate>
			<dc:creator>dishdesigner</dc:creator>
			<guid isPermaLink="false">105340@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Nick:&#60;/p&#62;
&#60;p&#62;Sorry the delay, but I just got around to trying this again. It did not work. I added the &#34;copy=&#38;gt;greyscale&#34; to all the other available listed images in functions.php near line 65, and then used the Regenerate Thumbnails plugin to regenerate the whole database of images.....&#60;/p&#62;
&#60;p&#62;It's the &#34;Related Entries&#34; thumbnails when you're viewing any given Portfolio Item entry page that remain in color....those are the ones I'd like to convert to black-and-white (until a rollover, when they turn to color by default everywhere else)....&#60;/p&#62;
&#60;p&#62;Any other ideas?&#60;br /&#62;
Thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "Use only grayscale thumbnails throughout Choices theme?"</title>
			<link>http://www.kriesi.at/support/topic/use-only-grayscale-thumbnails-throughout-choices-theme#post-101925</link>
			<pubDate>Mon, 18 Mar 2013 20:11:02 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">101925@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Try adding 'copy'=&#38;gt;'greyscale' to additional image definitions in functions.php. Just be aware that you will need to reupload the images in order to generate the greyscale. You can try regenerating the images, but if there aren't too many of them , it would be better to just reupload them &#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dishdesigner on "Use only grayscale thumbnails throughout Choices theme?"</title>
			<link>http://www.kriesi.at/support/topic/use-only-grayscale-thumbnails-throughout-choices-theme#post-101765</link>
			<pubDate>Mon, 18 Mar 2013 08:30:54 +0000</pubDate>
			<dc:creator>dishdesigner</dc:creator>
			<guid isPermaLink="false">101765@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Kriei tech support:&#60;/p&#62;
&#60;p&#62;I'm trying to force all site thumbnails using the Choices theme to ONLY display grayscale thumbnails in all areas of the site. Is there a central place to edit that would make that easy?....(it looks like functions.php starting on line 65 may be the target?....several lines have 'copy'=&#38;gt;'greyscale' after their sizing information in the array...)&#60;/p&#62;
&#60;p&#62;For example, my client loves the grayscale thumbnails that appear in the portfolio areas. But, then the same thumbnail grid in &#34;Related Entries&#34; that appears under each portfolio entry uses color thumbnails and I would prefer that they not compete with the big portfolio images of the current project above them....&#60;/p&#62;
&#60;p&#62;Best,&#60;br /&#62;
Darrin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Angular - Portfolio Item&#039;s &#34;Related Entries&#34;"</title>
			<link>http://www.kriesi.at/support/topic/angular-portfolio-items-related-entries#post-100492</link>
			<pubDate>Sun, 10 Mar 2013 23:52:55 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">100492@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Mark,&#60;/p&#62;
&#60;p&#62;Glad that Nick helped you. I've marked this thread as resolved.&#60;/p&#62;
&#60;p&#62;Cheers,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>mbesh on "Angular - Portfolio Item&#039;s &#34;Related Entries&#34;"</title>
			<link>http://www.kriesi.at/support/topic/angular-portfolio-items-related-entries#post-100446</link>
			<pubDate>Sun, 10 Mar 2013 17:54:22 +0000</pubDate>
			<dc:creator>mbesh</dc:creator>
			<guid isPermaLink="false">100446@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Nick,&#60;/p&#62;
&#60;p&#62;Yep, that's what we needed!  Thanks for your efforts!&#60;/p&#62;
&#60;p&#62;Mark&#60;/p&#62;
&#60;p&#62;Topic closed.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "Angular - Portfolio Item&#039;s &#34;Related Entries&#34;"</title>
			<link>http://www.kriesi.at/support/topic/angular-portfolio-items-related-entries#post-100418</link>
			<pubDate>Sun, 10 Mar 2013 09:51:58 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">100418@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Ok. Please open up /includes/related-portfolio-posts.php&#60;/p&#62;
&#60;p&#62;First take a look how you like this look,  I wasn't even aware of this capability of showing the related posts as a slider so that the page doesn't become too busy &#60;a href=&#34;http://www.clipular.com/c?2554070=M1n2kuu8lTUqB4jZKWVLV6vppOM&#34; rel=&#34;nofollow&#34;&#62;http://www.clipular.com/c?2554070=M1n2kuu8lTUqB4jZKWVLV6vppOM&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;a) Please change line 13 which looks like&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;$postcount = ($columns * 1);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;to look like&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;$postcount = ($columns * 3);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>mbesh on "Angular - Portfolio Item&#039;s &#34;Related Entries&#34;"</title>
			<link>http://www.kriesi.at/support/topic/angular-portfolio-items-related-entries#post-100282</link>
			<pubDate>Fri, 08 Mar 2013 21:34:13 +0000</pubDate>
			<dc:creator>mbesh</dc:creator>
			<guid isPermaLink="false">100282@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Nick,&#60;/p&#62;
&#60;p&#62;The number of the &#34;portfolio items&#34; in the dynamic template 'controls' the number displayed on this page:&#60;br /&#62;
&#60;a href=&#34;http://visualimpact.wpengine.com/print-production/&#34; rel=&#34;nofollow&#34;&#62;http://visualimpact.wpengine.com/print-production/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;We want to have all of these 'items' (less the one displayed---which would be 10, in this instance) displayed below the item picture listed under the &#34;Related Entries&#34; title (which is only showing 4 of then possible 10 available):&#60;br /&#62;
&#60;a href=&#34;http://visualimpact.wpengine.com/example/print-books/&#34; rel=&#34;nofollow&#34;&#62;http://visualimpact.wpengine.com/example/print-books/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;[ Note: Tried the &#34;All&#34; in the dynamic template for the number of portfolio items to be displayed, and it didn't change the number of items shown under the &#34;related Entries&#34; title].&#60;/p&#62;
&#60;p&#62;Mark
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "Angular - Portfolio Item&#039;s &#34;Related Entries&#34;"</title>
			<link>http://www.kriesi.at/support/topic/angular-portfolio-items-related-entries#post-99958</link>
			<pubDate>Thu, 07 Mar 2013 02:28:05 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">99958@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;You mean you want order all related entries from 1 to last ? &#60;/p&#62;
&#60;p&#62;You can try increasing the number of total items shown. There is a setting for portfolio in the custom templates that lets you select the total number of portfolio items shown. One of the options is 'Áll', please try that.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>mbesh on "Angular - Portfolio Item&#039;s &#34;Related Entries&#34;"</title>
			<link>http://www.kriesi.at/support/topic/angular-portfolio-items-related-entries#post-99799</link>
			<pubDate>Wed, 06 Mar 2013 13:30:12 +0000</pubDate>
			<dc:creator>mbesh</dc:creator>
			<guid isPermaLink="false">99799@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;For a portfolio item, is it possible to display ALL of the &#34;Related Entries&#34; below, rather than just 4 of them (in my example).&#60;/p&#62;
&#60;p&#62;Example Portfolio Item:&#60;br /&#62;
&#60;a href=&#34;http://visualimpact.wpengine.com/example/books/&#34; rel=&#34;nofollow&#34;&#62;http://visualimpact.wpengine.com/example/books/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;The &#34;landing page&#34; it comes from (has 11 'items'):&#60;br /&#62;
&#60;a href=&#34;http://visualimpact.wpengine.com/print-production/&#34; rel=&#34;nofollow&#34;&#62;http://visualimpact.wpengine.com/print-production/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I would like to have the remaining 10 &#34;Related Entries&#34; displayed (in this instance). [There are other 'items'  that may have more, as we continue to develop the site].&#60;/p&#62;
&#60;p&#62;ThanX,&#60;br /&#62;
Mark
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ftrasi on "Related entries doesn&#039;t show title post"</title>
			<link>http://www.kriesi.at/support/topic/related-entries-doesnt-show-title-post#post-94616</link>
			<pubDate>Sat, 02 Feb 2013 02:17:12 +0000</pubDate>
			<dc:creator>ftrasi</dc:creator>
			<guid isPermaLink="false">94616@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thank you,&#60;br /&#62;
I  made a new post and this shows the related entries with its titles.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Related entries doesn&#039;t show title post"</title>
			<link>http://www.kriesi.at/support/topic/related-entries-doesnt-show-title-post#post-93410</link>
			<pubDate>Fri, 25 Jan 2013 15:02:41 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">93410@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I'm only getting one single post to not display the titles but I think there may be something wrong with that posts entry in the database. The permalink is the first line of the post instead of the title and it might have gotten slightly corrupted.&#60;/p&#62;
&#60;p&#62;Try making new posts and if any of those don't have the titles after the change then it would be an issue but I don't see how it could be possible since there is only the one file to display the output.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ftrasi on "Related entries doesn&#039;t show title post"</title>
			<link>http://www.kriesi.at/support/topic/related-entries-doesnt-show-title-post#post-93314</link>
			<pubDate>Thu, 24 Jan 2013 22:27:09 +0000</pubDate>
			<dc:creator>ftrasi</dc:creator>
			<guid isPermaLink="false">93314@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I've disabled a WP plugin &#34;Better WP Security&#34; :/, you can try it now? sorry
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Related entries doesn&#039;t show title post"</title>
			<link>http://www.kriesi.at/support/topic/related-entries-doesnt-show-title-post#post-93111</link>
			<pubDate>Thu, 24 Jan 2013 02:36:18 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">93111@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Each time I try and pull up the site it loads for one or two pages but then it comes up with just &#34;error&#34;.&#60;/p&#62;
&#60;p&#62;I'm not sure whats going on but I'm not able to consistently pull up your site in any browser.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ftrasi on "Related entries doesn&#039;t show title post"</title>
			<link>http://www.kriesi.at/support/topic/related-entries-doesnt-show-title-post#post-92912</link>
			<pubDate>Tue, 22 Jan 2013 21:49:34 +0000</pubDate>
			<dc:creator>ftrasi</dc:creator>
			<guid isPermaLink="false">92912@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Nop, the links are ok.&#60;br /&#62;
Which error do you read?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Related entries doesn&#039;t show title post"</title>
			<link>http://www.kriesi.at/support/topic/related-entries-doesnt-show-title-post#post-92653</link>
			<pubDate>Mon, 21 Jan 2013 17:27:38 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">92653@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi ftrasi,&#60;/p&#62;
&#60;p&#62;I'm just getting an error when I try to view the site now. Was the URL moved or can you post a link to the posts where the change isn't taking place?&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ftrasi on "Related entries doesn&#039;t show title post"</title>
			<link>http://www.kriesi.at/support/topic/related-entries-doesnt-show-title-post#post-92413</link>
			<pubDate>Sat, 19 Jan 2013 16:04:52 +0000</pubDate>
			<dc:creator>ftrasi</dc:creator>
			<guid isPermaLink="false">92413@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Yes, that's the issue. But the titles show in some posts, not in another ones.&#60;br /&#62;
That's why I ask you: is the post-type the reason? Why we view Related-Entries titles in the second post but not in the first one?&#60;br /&#62;
Thanks,
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Related entries doesn&#039;t show title post"</title>
			<link>http://www.kriesi.at/support/topic/related-entries-doesnt-show-title-post#post-92365</link>
			<pubDate>Sat, 19 Jan 2013 02:29:38 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">92365@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I thought you want to show the titles for your related entries?&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ftrasi on "Related entries doesn&#039;t show title post"</title>
			<link>http://www.kriesi.at/support/topic/related-entries-doesnt-show-title-post#post-92297</link>
			<pubDate>Fri, 18 Jan 2013 18:28:57 +0000</pubDate>
			<dc:creator>ftrasi</dc:creator>
			<guid isPermaLink="false">92297@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Ismael,&#60;br /&#62;
Thank you very much, but... why this post shows the titles in &#34;Related Entries&#34;?&#60;br /&#62;
&#60;a href=&#34;http://nuevo.claseviva.com/html-styles/&#34; rel=&#34;nofollow&#34;&#62;http://nuevo.claseviva.com/html-styles/&#60;/a&#62;&#60;br /&#62;
It's the same blog, same include&#38;gt;related-posts.php, isn't it?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Related entries doesn&#039;t show title post"</title>
			<link>http://www.kriesi.at/support/topic/related-entries-doesnt-show-title-post#post-92168</link>
			<pubDate>Thu, 17 Jan 2013 23:54:40 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">92168@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Open includes &#38;gt; related-posts.php and find this code&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$output .= &#38;quot;&#38;lt;div class=&#38;#39;$post_class $extra relThumb relThumb&#38;quot;.$count.&#38;quot; post-format-&#38;quot;.$format.&#38;quot; flex_column&#38;#39;&#38;gt;\n&#38;quot;;
	 			$output .= &#38;quot;&#38;lt;a href=&#38;#39;&#38;quot;.get_permalink().&#38;quot;&#38;#39; class=&#38;#39;relThumWrap noLightbox&#38;#39;&#38;gt;\n&#38;quot;;
     			$output .= &#38;quot;&#38;lt;span class=&#38;#39;related_image_wrap&#38;#39;&#38;gt;&#38;quot;;
	 			$output .= $image;
	 			$output .= &#38;quot;&#38;lt;/span&#38;gt;\n&#38;quot;;
	 			$output .= avia_title(array(&#38;#39;title&#38;#39;=&#38;gt;avia_backend_truncate(get_the_title(), 40, &#38;quot; &#38;quot;), &#38;#39;class&#38;#39;=&#38;gt;&#38;#39;portfolio-title&#38;#39;, &#38;#39;html&#38;#39; =&#38;gt; &#38;quot;&#38;lt;div class=&#38;#39;{class} title_container&#38;#39;&#38;gt;&#38;lt;h1 class=&#38;#39;main-title&#38;#39;&#38;gt;{title}&#38;lt;/h1&#38;gt;&#38;lt;/div&#38;gt;&#38;quot;), $post-&#38;gt;ID);
	 			$output .= &#38;quot;\n&#38;lt;/a&#38;gt;&#38;quot;;
	 			$output .= &#38;quot;&#38;lt;/div&#38;gt;&#38;lt;!-- end .relThumb --&#38;gt;\n&#38;quot;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Replace it with this&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$output .= &#38;quot;&#38;lt;div class=&#38;#39;$post_class $extra relThumb relThumb&#38;quot;.$count.&#38;quot; post-format-&#38;quot;.$format.&#38;quot; flex_column&#38;#39;&#38;gt;\n&#38;quot;;
	 			$output .= &#38;quot;&#38;lt;a href=&#38;#39;&#38;quot;.get_permalink().&#38;quot;&#38;#39; class=&#38;#39;relThumWrap noLightbox&#38;#39;&#38;gt;\n&#38;quot;;
     			$output .= &#38;quot;&#38;lt;span class=&#38;#39;related_image_wrap&#38;#39;&#38;gt;&#38;quot;;
	 			$output .= $image;
	 			$output .= &#38;quot;&#38;lt;/span&#38;gt;\n&#38;quot;;
	 			$output .= &#38;quot;&#38;lt;div class=&#38;#39;small title_container&#38;#39;&#38;gt;&#38;quot;;
				$output .= get_the_title();
				$output .= &#38;quot;&#38;lt;/div&#38;gt;&#38;quot;;
	 			$output .= &#38;quot;\n&#38;lt;/a&#38;gt;&#38;quot;;
	 			$output .= &#38;quot;&#38;lt;/div&#38;gt;&#38;lt;!-- end .relThumb --&#38;gt;\n&#38;quot;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Also, add this on your custom.css&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;small.title_container {
margin-top: 5px;
border: none;
font-size: 9px;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ftrasi on "Related entries doesn&#039;t show title post"</title>
			<link>http://www.kriesi.at/support/topic/related-entries-doesnt-show-title-post#post-92094</link>
			<pubDate>Thu, 17 Jan 2013 17:49:36 +0000</pubDate>
			<dc:creator>ftrasi</dc:creator>
			<guid isPermaLink="false">92094@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;br /&#62;
This is my work-in-progress post: &#60;a href=&#34;http://nuevo.claseviva.com/seguimiento-de-materiales-de-e-learning-como-publicar-en-aicc/&#34; rel=&#34;nofollow&#34;&#62;http://nuevo.claseviva.com/seguimiento-de-materiales-de-e-learning-como-publicar-en-aicc/&#60;/a&#62;&#60;br /&#62;
Is there any way to view the titles in Related Entries at the bottom?&#60;br /&#62;
Thanks in advance,
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Related Entries Thumbnail Image"</title>
			<link>http://www.kriesi.at/support/topic/related-entries-thumbnail-image#post-90504</link>
			<pubDate>Tue, 08 Jan 2013 09:01:20 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">90504@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Yes that's correct. You can try to change the &#34;Slideshow behavior on overview pages&#34; option. (Flagship &#38;gt; Theme Options &#38;gt; Layout &#38;amp; Settings). Maybe the &#34;Display default slideshow on overview pages and on single entries&#34; setting will help you.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>MichaelStults on "Related Entries Thumbnail Image"</title>
			<link>http://www.kriesi.at/support/topic/related-entries-thumbnail-image#post-90450</link>
			<pubDate>Mon, 07 Jan 2013 23:10:07 +0000</pubDate>
			<dc:creator>MichaelStults</dc:creator>
			<guid isPermaLink="false">90450@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I think I may understand now. So if I want a thumbnail for the related entries, it will always show the full image above each post which in return would have the thumbnail and all the other sizes it auto makes once the picture is uploaded? &#60;/p&#62;
&#60;p&#62;Would that be correct?&#60;/p&#62;
&#60;p&#62;Thanks!&#60;/p&#62;
&#60;p&#62;Mike
&#60;/p&#62;</description>
		</item>
		<item>
			<title>MichaelStults on "Related Entries Thumbnail Image"</title>
			<link>http://www.kriesi.at/support/topic/related-entries-thumbnail-image#post-90417</link>
			<pubDate>Mon, 07 Jan 2013 18:19:13 +0000</pubDate>
			<dc:creator>MichaelStults</dc:creator>
			<guid isPermaLink="false">90417@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Devin,&#60;/p&#62;
&#60;p&#62;Appreciate your time in responding! &#60;/p&#62;
&#60;p&#62;When I add an image to that area, my understanding that is for the slideshow in the header area.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://bit.ly/109gVTI&#34; rel=&#34;nofollow&#34;&#62;http://bit.ly/109gVTI&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;How do I tell it to only use an image for the &#34;thumbnail&#34; image for the &#34;related entries&#34; boxes at the bottom of the posts?&#60;/p&#62;
&#60;p&#62;I know it has to be easy but must be over looking something pretty simple.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Related Entries Thumbnail Image"</title>
			<link>http://www.kriesi.at/support/topic/related-entries-thumbnail-image#post-90380</link>
			<pubDate>Mon, 07 Jan 2013 15:33:08 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">90380@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi MichaelStults,&#60;/p&#62;
&#60;p&#62;You just need to add images to the featured media/gallery meta box below the visual editor for your posts.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
