<?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: Gallery post type comes up when selecting categories from single portfoliio page</title>
		<link>http://www.kriesi.at/support/topic/gallery-post-type-comes-up-when-selecting-categories-from-single-portfoliio-page</link>
		<description>Support Forum - Topic: Gallery post type comes up when selecting categories from single portfoliio page</description>
		<language>en-US</language>
		<pubDate>Sun, 19 May 2013 08:43:51 +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/gallery-post-type-comes-up-when-selecting-categories-from-single-portfoliio-page" rel="self" type="application/rss+xml" />

		<item>
			<title>Devin on "Gallery post type comes up when selecting categories from single portfoliio page"</title>
			<link>http://www.kriesi.at/support/topic/gallery-post-type-comes-up-when-selecting-categories-from-single-portfoliio-page#post-97248</link>
			<pubDate>Mon, 18 Feb 2013 14:59:03 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">97248@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Tim,&#60;/p&#62;
&#60;p&#62;All post types in wordpress are capable of being shown as an archive. IE, take a tag or category and even a data range with posts and they will be spit out as an archive. The archive display is by default shown as a list and typically styled similar to a blog layout.&#60;/p&#62;
&#60;p&#62;So if you wanted to have the category archive for portfolio items look different than how they are, you would need to create a new file for wordpress to pull from. I believe the correct hierarchy would be taxonomy-portfolio.php since portfolio is the custom post type. &#60;/p&#62;
&#60;p&#62;You can copy over the archive.php to this new file, then change the loop used to a new one you would also need to create. Although, you could try just having the archive run the loop-portoflio. That may work though I've not actually tried it (ie changing your new taxonomy-portfolio.php file to use get_template_part('includes/loop', 'portfolio'); ).&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>KingConga on "Gallery post type comes up when selecting categories from single portfoliio page"</title>
			<link>http://www.kriesi.at/support/topic/gallery-post-type-comes-up-when-selecting-categories-from-single-portfoliio-page#post-97087</link>
			<pubDate>Sun, 17 Feb 2013 01:08:23 +0000</pubDate>
			<dc:creator>KingConga</dc:creator>
			<guid isPermaLink="false">97087@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I have achieved the second option  (removing the meta from below the photo) by removing the whole span tag that contained the meta from  loop-portfolio-single.php   from line 50 onwards as below.&#60;/p&#62;
&#60;p&#62;This has done the trick, but I'd be grateful for the info if there was another way.&#60;/p&#62;
&#60;p&#62;thanks&#60;br /&#62;
Tim&#60;/p&#62;
&#60;p&#62;&#38;lt;span class='post-meta-infos'&#38;gt;&#60;br /&#62;
							&#38;lt;?php&#60;br /&#62;
							$portfolio_cats = get_the_term_list(  get_the_ID(), 'portfolio_entries', '', ', ','');&#60;br /&#62;
							if($portfolio_cats &#38;amp;&#38;amp; !is_object($portfolio_cats))&#60;br /&#62;
							{&#60;br /&#62;
								echo '&#38;lt;span class=&#34;portfolio-categories minor-meta&#34;&#38;gt;'.__('in ','avia_framework');&#60;br /&#62;
								echo $portfolio_cats;&#60;br /&#62;
								echo ' &#38;lt;/span&#38;gt;&#38;lt;span class=&#34;text-sep&#34;&#38;gt;/&#38;lt;/span&#38;gt; ';&#60;br /&#62;
							}&#60;br /&#62;
							/*&#60;br /&#62;
							echo '&#38;lt;span class=&#34;blog-author minor-meta&#34;&#38;gt;'.__('by ','avia_framework');&#60;br /&#62;
							the_author_posts_link();&#60;br /&#62;
							echo '&#38;lt;/span&#38;gt;';&#60;br /&#62;
							*/&#60;br /&#62;
							?&#38;gt;&#60;br /&#62;
						&#38;lt;/span&#38;gt;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>KingConga on "Gallery post type comes up when selecting categories from single portfoliio page"</title>
			<link>http://www.kriesi.at/support/topic/gallery-post-type-comes-up-when-selecting-categories-from-single-portfoliio-page#post-97086</link>
			<pubDate>Sun, 17 Feb 2013 00:49:56 +0000</pubDate>
			<dc:creator>KingConga</dc:creator>
			<guid isPermaLink="false">97086@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello&#60;/p&#62;
&#60;p&#62;I have a gallery page of portfolio items with customised dimensions.&#60;/p&#62;
&#60;p&#62;When I have clicked through from there to a 'single portfolio page'  and then select a category from the meta under the photo, it selects the elements from that category but displays them on a page with what I think is 'Gallery post type' formatting.  The photos are the wrong size and proportions and they are cropped. &#60;/p&#62;
&#60;p&#62;In the functions.php I already have ['post-format-image'] set at the size I had wanted, as you can see below.&#60;/p&#62;
&#60;p&#62;$avia_config['imgSize']['widget'] 			= array('width'=&#38;gt;36,  'height'=&#38;gt;36 );					// small preview pics eg sidebar news&#60;br /&#62;
$avia_config['imgSize']['post-format-image'] 	= array('width'=&#38;gt;480, 'height'=&#38;gt;726, 'crop'=&#38;gt;false);		// big images for post format image and gallery posts&#60;br /&#62;
$avia_config['imgSize']['fullsize'] 		 	= array('width'=&#38;gt;480, 'height'=&#38;gt;726, 'crop'=&#38;gt;false);		// big images for lightbox and portfolio single entries&#60;br /&#62;
$avia_config['imgSize']['featured'] 		 	= array('width'=&#38;gt;930, 'height'=&#38;gt;340);				// images for fullsize pages and fullsize slider&#60;br /&#62;
$avia_config['imgSize']['portfolio'] 		 	= array('width'=&#38;gt;480, 'height'=&#38;gt;726);						// images for portfolio entries (2,3,4 column)&#60;br /&#62;
$avia_config['imgSize']['new_portfolio_left'] 	= array('width'=&#38;gt;480, 'height'=&#38;gt;726, 'crop'=&#38;gt;false);	// custom portoflio item page left image&#60;/p&#62;
&#60;p&#62;I am  a little confused that portfolio items are being pulled into what I think is a post format. Especially when I seem to have changed the sizes for that anyway !&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://emilyzhukov.com/portfolio_entries/sculpture/&#34; rel=&#34;nofollow&#34;&#62;http://emilyzhukov.com/portfolio_entries/sculpture/&#60;/a&#62;  here you can see what I am talking about.  The images seem tnumbnails created at 480 x 340. They must then be magnified because they look wider than 480 pixels to me. This page also has a sidebar, which only exists on the blog page.&#60;/p&#62;
&#60;p&#62;Ideally I would display the chosen category in a way that doesn't crop the photos. Another option I'm considering is removing the meta for portfolio categories that appears below the single portfolio page's photograph. &#60;/p&#62;
&#60;p&#62;I've been looking through a bunch of files but it's quite confusing. Are you able to help please.&#60;br /&#62;
This is quite possibly a WordPress issue&#60;/p&#62;
&#60;p&#62;thanks&#60;br /&#62;
Tim
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
