<?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: custom field - Recent Posts</title>
		<link>http://www.kriesi.at/support/tags/custom-field</link>
		<description>Support Forum - Tag: custom field - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Tue, 18 Jun 2013 21:51:42 +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/custom-field" rel="self" type="application/rss+xml" />

		<item>
			<title>Ismael on "Disable date displayer with a custom field"</title>
			<link>http://www.kriesi.at/support/topic/disable-date-displayer-with-a-custom-field#post-85997</link>
			<pubDate>Fri, 30 Nov 2012 10:52:25 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">85997@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;/p&#62;
&#60;p&#62;Good thing Dude fixed it. :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>mizzquizz on "Disable date displayer with a custom field"</title>
			<link>http://www.kriesi.at/support/topic/disable-date-displayer-with-a-custom-field#post-85995</link>
			<pubDate>Fri, 30 Nov 2012 10:50:32 +0000</pubDate>
			<dc:creator>mizzquizz</dc:creator>
			<guid isPermaLink="false">85995@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Ah Dude, you're a true hero! Thanks once again for helping me out!&#60;/p&#62;
&#60;p&#62;Cheers!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Disable date displayer with a custom field"</title>
			<link>http://www.kriesi.at/support/topic/disable-date-displayer-with-a-custom-field#post-85972</link>
			<pubDate>Fri, 30 Nov 2012 08:24:10 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">85972@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Replace:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;div class=&#38;quot;date_container&#38;quot;&#38;gt;&#38;lt;br /&#38;gt;
   				&#38;lt;span class=&#38;#39;day&#38;#39;&#38;gt;&#38;lt;?php the_time(&#38;#39;d&#38;#39;) ?&#38;gt;&#38;lt;/span&#38;gt;&#38;lt;br /&#38;gt;
   				&#38;lt;span class=&#38;#39;month&#38;#39;&#38;gt;&#38;lt;?php the_time(&#38;#39;M&#38;#39;) ?&#38;gt;&#38;lt;/span&#38;gt;&#38;lt;br /&#38;gt;
   				&#38;lt;span class=&#38;#39;year&#38;#39;&#38;gt;&#38;lt;?php the_time(&#38;#39;Y&#38;#39;) ?&#38;gt;&#38;lt;/span&#38;gt;&#38;lt;br /&#38;gt;
   				&#38;lt;?php if($k_option[&#38;#39;single&#38;#39;][&#38;#39;acc_tw&#38;#39;] != &#38;#39;&#38;#39;) { ?&#38;gt;&#38;lt;br /&#38;gt;
   				&#38;lt;div class=&#38;quot;tweetmeme&#38;quot;&#38;gt;&#38;lt;br /&#38;gt;
					&#38;lt;script type=&#38;quot;text/javascript&#38;quot;&#38;gt;&#38;lt;br /&#38;gt;
						tweetmeme_source = &#38;#39;&#38;lt;?php echo $k_option[&#38;#39;single&#38;#39;][&#38;#39;acc_tw&#38;#39;]; ?&#38;gt;&#38;#39;;&#38;lt;br /&#38;gt;
						tweetmeme_url = &#38;#39;&#38;lt;?php echo get_permalink() ?&#38;gt;&#38;#39;;&#38;lt;br /&#38;gt;
 					&#38;lt;/script&#38;gt;&#38;lt;br /&#38;gt;
					&#38;lt;script type=&#38;quot;text/javascript&#38;quot; src=&#38;quot;http://tweetmeme.com/i/scripts/button.js&#38;quot;&#38;gt;&#38;lt;/script&#38;gt;&#38;lt;br /&#38;gt;
				&#38;lt;/div&#38;gt;&#38;lt;br /&#38;gt;
				&#38;lt;?php } ?&#38;gt;&#38;lt;br /&#38;gt;
   				&#38;lt;span class=&#38;#39;date_container_bottom&#38;#39;&#38;gt;&#38;lt;/span&#38;gt;&#38;lt;br /&#38;gt;
			&#38;lt;/div&#38;gt;&#38;lt;!-- end date --&#38;gt;&#38;lt;br /&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;with:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
$removedate = get_post_meta(get_the_ID(), &#38;#39;removedate&#38;#39;, true);
 if( empty($removedate) ){ ?&#38;gt;
&#38;lt;div class=&#38;quot;date_container&#38;quot;&#38;gt;&#38;lt;br /&#38;gt;
   				&#38;lt;span class=&#38;#39;day&#38;#39;&#38;gt;&#38;lt;?php the_time(&#38;#39;d&#38;#39;) ?&#38;gt;&#38;lt;/span&#38;gt;&#38;lt;br /&#38;gt;
   				&#38;lt;span class=&#38;#39;month&#38;#39;&#38;gt;&#38;lt;?php the_time(&#38;#39;M&#38;#39;) ?&#38;gt;&#38;lt;/span&#38;gt;&#38;lt;br /&#38;gt;
   				&#38;lt;span class=&#38;#39;year&#38;#39;&#38;gt;&#38;lt;?php the_time(&#38;#39;Y&#38;#39;) ?&#38;gt;&#38;lt;/span&#38;gt;&#38;lt;br /&#38;gt;
   				&#38;lt;?php if($k_option[&#38;#39;single&#38;#39;][&#38;#39;acc_tw&#38;#39;] != &#38;#39;&#38;#39;) { ?&#38;gt;&#38;lt;br /&#38;gt;
   				&#38;lt;div class=&#38;quot;tweetmeme&#38;quot;&#38;gt;&#38;lt;br /&#38;gt;
					&#38;lt;script type=&#38;quot;text/javascript&#38;quot;&#38;gt;&#38;lt;br /&#38;gt;
						tweetmeme_source = &#38;#39;&#38;lt;?php echo $k_option[&#38;#39;single&#38;#39;][&#38;#39;acc_tw&#38;#39;]; ?&#38;gt;&#38;#39;;&#38;lt;br /&#38;gt;
						tweetmeme_url = &#38;#39;&#38;lt;?php echo get_permalink() ?&#38;gt;&#38;#39;;&#38;lt;br /&#38;gt;
 					&#38;lt;/script&#38;gt;&#38;lt;br /&#38;gt;
					&#38;lt;script type=&#38;quot;text/javascript&#38;quot; src=&#38;quot;http://tweetmeme.com/i/scripts/button.js&#38;quot;&#38;gt;&#38;lt;/script&#38;gt;&#38;lt;br /&#38;gt;
				&#38;lt;/div&#38;gt;&#38;lt;br /&#38;gt;
				&#38;lt;?php } ?&#38;gt;&#38;lt;br /&#38;gt;
   				&#38;lt;span class=&#38;#39;date_container_bottom&#38;#39;&#38;gt;&#38;lt;/span&#38;gt;&#38;lt;br /&#38;gt;
			&#38;lt;/div&#38;gt;&#38;lt;!-- end date --&#38;gt;&#38;lt;br /&#38;gt;
&#38;lt;?php } ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Then create a custom field, call it &#34;removedate&#34; and enter a value (you can eg enter 1 or yes, etc.).
&#60;/p&#62;</description>
		</item>
		<item>
			<title>mizzquizz on "Disable date displayer with a custom field"</title>
			<link>http://www.kriesi.at/support/topic/disable-date-displayer-with-a-custom-field#post-85915</link>
			<pubDate>Thu, 29 Nov 2012 18:54:38 +0000</pubDate>
			<dc:creator>mizzquizz</dc:creator>
			<guid isPermaLink="false">85915@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Devin,&#60;/p&#62;
&#60;p&#62;the problem is that I only wish to remove the date element in &#38;lt;i&#38;gt;some&#38;lt;/i&#38;gt; posts, as some parts of my site need to have a more static feel to them (my site is built up around the portfolio 4 column view). The method 2 on the page I linked to, seems a reasonably simple way to do this, using Custom FIelds to remove the date. I'm just not sure as to how I should wrap the date html code, or if there is another simpler way to do it.&#60;br /&#62;
If I remove the code in single.php I think the date element will disappear from all posts, in stead of only some of them.&#60;/p&#62;
&#60;p&#62;I hope that I convey my idea properly :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Disable date displayer with a custom field"</title>
			<link>http://www.kriesi.at/support/topic/disable-date-displayer-with-a-custom-field#post-85907</link>
			<pubDate>Thu, 29 Nov 2012 18:14:45 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">85907@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi mizzquizz,&#60;/p&#62;
&#60;p&#62;I'm not sure if I understand what you are trying to do. If all you want to do is remove the date on a single page you could just remove the code from single.php completely.&#60;/p&#62;
&#60;p&#62;You could also do it via css a bit more easily by targetting the single-page class on the #top div. IE, something like this:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#top.single-post .date_container {
display: none;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Add that to your style.css at the very bottom and it will remove the date only from single post view.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>mizzquizz on "Disable date displayer with a custom field"</title>
			<link>http://www.kriesi.at/support/topic/disable-date-displayer-with-a-custom-field#post-85841</link>
			<pubDate>Thu, 29 Nov 2012 11:02:23 +0000</pubDate>
			<dc:creator>mizzquizz</dc:creator>
			<guid isPermaLink="false">85841@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi guys,&#60;/p&#62;
&#60;p&#62;I love this forum, lot of useful stuff in here. &#60;/p&#62;
&#60;p&#62;However, I hope you could help me out with a small modification: I would like to remove the element that displays the date in single.php (around line 36-50) in certain posts. Here's the code I'm talking about:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;div class=&#38;quot;date_container&#38;quot;&#38;gt;&#38;lt;br /&#38;gt;
   				&#38;lt;span class=&#38;#39;day&#38;#39;&#38;gt;&#38;lt;?php the_time(&#38;#39;d&#38;#39;) ?&#38;gt;&#38;lt;/span&#38;gt;&#38;lt;br /&#38;gt;
   				&#38;lt;span class=&#38;#39;month&#38;#39;&#38;gt;&#38;lt;?php the_time(&#38;#39;M&#38;#39;) ?&#38;gt;&#38;lt;/span&#38;gt;&#38;lt;br /&#38;gt;
   				&#38;lt;span class=&#38;#39;year&#38;#39;&#38;gt;&#38;lt;?php the_time(&#38;#39;Y&#38;#39;) ?&#38;gt;&#38;lt;/span&#38;gt;&#38;lt;br /&#38;gt;
   				&#38;lt;?php if($k_option[&#38;#39;single&#38;#39;][&#38;#39;acc_tw&#38;#39;] != &#38;#39;&#38;#39;) { ?&#38;gt;&#38;lt;br /&#38;gt;
   				&#38;lt;div class=&#38;quot;tweetmeme&#38;quot;&#38;gt;&#38;lt;br /&#38;gt;
					&#38;lt;script type=&#38;quot;text/javascript&#38;quot;&#38;gt;&#38;lt;br /&#38;gt;
						tweetmeme_source = &#38;#39;&#38;lt;?php echo $k_option[&#38;#39;single&#38;#39;][&#38;#39;acc_tw&#38;#39;]; ?&#38;gt;&#38;#39;;&#38;lt;br /&#38;gt;
						tweetmeme_url = &#38;#39;&#38;lt;?php echo get_permalink() ?&#38;gt;&#38;#39;;&#38;lt;br /&#38;gt;
 					&#38;lt;/script&#38;gt;&#38;lt;br /&#38;gt;
					&#38;lt;script type=&#38;quot;text/javascript&#38;quot; src=&#38;quot;http://tweetmeme.com/i/scripts/button.js&#38;quot;&#38;gt;&#38;lt;/script&#38;gt;&#38;lt;br /&#38;gt;
				&#38;lt;/div&#38;gt;&#38;lt;br /&#38;gt;
				&#38;lt;?php } ?&#38;gt;&#38;lt;br /&#38;gt;
   				&#38;lt;span class=&#38;#39;date_container_bottom&#38;#39;&#38;gt;&#38;lt;/span&#38;gt;&#38;lt;br /&#38;gt;
			&#38;lt;/div&#38;gt;&#38;lt;!-- end date --&#38;gt;&#38;lt;br /&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I suspect this could be easily done through wrapping the date element in some conditional php code and then use the custom fields to call for the function, much like method 2 does on this page: &#60;a href=&#34;http://www.nannygoatsinpanties.com/how-tos/wordpress-how-to-remove-the-sidebar-for-specific-pages&#34; rel=&#34;nofollow&#34;&#62;http://www.nannygoatsinpanties.com/how-tos/wordpress-how-to-remove-the-sidebar-for-specific-pages&#60;/a&#62; , only my skills with php are fairly limited.&#60;/p&#62;
&#60;p&#62;Do any of you guys have a suggestion as to how I could go about it? Thanks in advance!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "get custom field in the loop"</title>
			<link>http://www.kriesi.at/support/topic/get-custom-field-in-the-loop#post-72228</link>
			<pubDate>Wed, 22 Aug 2012 06:22:10 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">72228@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi amancuso,&#60;/p&#62;
&#60;p&#62;Glad that this is resolved. :)&#60;/p&#62;
&#60;p&#62;Cheers,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>amancuso on "get custom field in the loop"</title>
			<link>http://www.kriesi.at/support/topic/get-custom-field-in-the-loop#post-72154</link>
			<pubDate>Tue, 21 Aug 2012 19:42:18 +0000</pubDate>
			<dc:creator>amancuso</dc:creator>
			<guid isPermaLink="false">72154@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;solved using  get_post_meta( get_the_ID(), 'key1' );  instead of   get_post_meta($post-&#38;gt;ID, 'key_1', true);
&#60;/p&#62;</description>
		</item>
		<item>
			<title>amancuso on "get custom field in the loop"</title>
			<link>http://www.kriesi.at/support/topic/get-custom-field-in-the-loop#post-72112</link>
			<pubDate>Tue, 21 Aug 2012 16:15:32 +0000</pubDate>
			<dc:creator>amancuso</dc:creator>
			<guid isPermaLink="false">72112@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;the code you have posted works for a single post but I need to  get the custom field in the portfolio page  (see de code beow)&#60;/p&#62;
&#60;p&#62;theme: Avisio&#60;br /&#62;
file: template_portfolio.php&#60;/p&#62;
&#60;p&#62;&#34;&#38;lt;?php&#60;br /&#62;
/*&#60;br /&#62;
Template Name: Portfolio&#60;br /&#62;
*/&#60;br /&#62;
global $k_option, $more;&#60;/p&#62;
&#60;p&#62;//default settings for archive pages&#60;br /&#62;
$portfolioInfo = array('4','one_fourth','M','nosort');&#60;/p&#62;
&#60;p&#62;//parameters for querying portfolio entries&#60;br /&#62;
$more = 0;&#60;br /&#62;
$overview_post_id = $post-&#38;gt;ID;&#60;br /&#62;
$posts_per_page = 9999;&#60;br /&#62;
$query_string =  &#34;posts_per_page=&#34;.$posts_per_page;&#60;br /&#62;
$query_string .= &#34;&#38;amp;post_type=portfolio&#34;;&#60;br /&#62;
if(isset($useTemplate)) $query_string .= &#34;&#38;amp;portfolio_entries=&#34;.$useTemplate;&#60;br /&#62;
//$query_string .= &#34;&#38;amp;portfolio_entries=&#34;.$k_option['portfolio']['matrix_slider_port_final'][$post-&#38;gt;ID]; //doesnt work in wp3.0&#60;/p&#62;
&#60;p&#62;// send query&#60;br /&#62;
$additional_loop = new WP_Query($query_string); &#60;/p&#62;
&#60;p&#62;//get portfolio categories used on this page&#60;br /&#62;
$categories = get_categories('title_li=&#38;amp;orderby=name&#38;amp;hide_empty=0&#38;amp;taxonomy=portfolio_entries&#38;amp;include='.$k_option['portfolio']['matrix_slider_port_final'][$overview_post_id]);&#60;/p&#62;
&#60;p&#62;//get portfolio information like column count and sortable&#60;br /&#62;
for($i = 0; $i &#38;lt; $k_option['portfolio']['super_matrix_count']; $i ++)&#60;br /&#62;
{&#60;br /&#62;
	if ($k_option['portfolio']['matrix_page_slider_port_'.$i] == $overview_post_id)&#60;br /&#62;
	{&#60;br /&#62;
		$portfolioNumber = $i;&#60;br /&#62;
	}&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;$portfolioInfoNew =  explode('$',$k_option['portfolio']['matrix_column_slider_port_'.$portfolioNumber]);&#60;/p&#62;
&#60;p&#62;if(isset($portfolioInfoNew[1])) $portfolioInfo = $portfolioInfoNew;&#60;/p&#62;
&#60;p&#62;//if portfolio is sortable replace heading with sort options&#60;br /&#62;
if($portfolioInfo[3] == 'sort')&#60;br /&#62;
{&#60;br /&#62;
	$output = &#34;&#38;lt;div id='js_sort_items'&#38;gt;&#34;;&#60;/p&#62;
&#60;p&#62;	$hide = &#34;hidden&#34;;&#60;br /&#62;
	if (isset($categories[1])){ $hide = &#34;&#34;; }&#60;/p&#62;
&#60;p&#62;	$output .= &#34;&#38;lt;div class='sort_by_cat $hide '&#38;gt;&#34;;&#60;br /&#62;
	$output .= &#34;&#38;lt;span&#38;gt;&#34;.__('Show:','avisio').&#34;&#38;lt;/span&#38;gt;&#34;;&#60;br /&#62;
	$output .= &#34;&#60;a href='#'&#62;&#34;.__('All','avisio').&#34;&#60;/a&#62;&#34;;&#60;/p&#62;
&#60;p&#62;	foreach($categories as $category)&#60;br /&#62;
	{&#60;br /&#62;
	$output .= &#34;&#60;a href='#'&#62;category_nicename.&#34;_sort'&#38;gt;&#34;.$category-&#38;gt;cat_name.&#34;&#60;/a&#62;&#34;;&#60;br /&#62;
	}&#60;/p&#62;
&#60;p&#62;	$output .= &#34;&#38;lt;/div&#38;gt;&#34;;&#60;/p&#62;
&#60;p&#62;	$output .= &#34;&#38;lt;div class='sort_by_val'&#38;gt;&#34;;&#60;br /&#62;
	$output .= &#34;&#38;lt;span&#38;gt;&#34;.__('Sort by:','avisio').&#34;&#38;lt;/span&#38;gt;&#34;;&#60;br /&#62;
	$output .= &#34;&#60;a href='#'&#62;&#34;.__('Date','avisio').&#34;&#60;/a&#62;&#34;;&#60;br /&#62;
	$output .= &#34;&#60;a href='#'&#62;&#34;.__('Name','avisio').&#34;&#60;/a&#62;&#34;;&#60;br /&#62;
	$output .= &#34;&#38;lt;/div&#38;gt;&#38;lt;/div&#38;gt;&#34;;&#60;/p&#62;
&#60;p&#62;	$k_option['custom']['headlineContent'] = $output;&#60;br /&#62;
	$paginationNumber = 0;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;//pagination workaround to solve wordpress 3 incompletness&#60;/p&#62;
&#60;p&#62;$real_posts_per_page = $k_option['portfolio']['matrix_number_slider_port_'.$portfolioNumber];&#60;br /&#62;
if(!$real_posts_per_page) $real_posts_per_page = get_option('posts_per_page');&#60;br /&#62;
$all_posts_count = 0;&#60;br /&#62;
$offset = 0;&#60;br /&#62;
if(!$paged) $paged = 1;&#60;/p&#62;
&#60;p&#62;$catarray = explode(',',$k_option['portfolio']['matrix_slider_port_final'][$overview_post_id]); &#60;/p&#62;
&#60;p&#62;if($additional_loop-&#38;gt;have_posts()) : while ($additional_loop-&#38;gt;have_posts()) : $additional_loop-&#38;gt;the_post(); &#60;/p&#62;
&#60;p&#62;if(!isset($useTemplate))&#60;br /&#62;
{&#60;br /&#62;
	$item_categories = get_the_terms( $id, 'portfolio_entries' );&#60;/p&#62;
&#60;p&#62;	$all_posts_count ++;&#60;/p&#62;
&#60;p&#62;	if(is_object($item_categories) &#124;&#124; is_array($item_categories))&#60;br /&#62;
	{&#60;br /&#62;
		foreach ($item_categories as $cat)&#60;br /&#62;
		{&#60;br /&#62;
			$class_add[$id] .= $cat-&#38;gt;slug.'_sort ';&#60;br /&#62;
			if(in_array($cat-&#38;gt;term_id, $catarray))&#60;br /&#62;
			{&#60;br /&#62;
				$displayPost[$id] = true;&#60;br /&#62;
			}&#60;br /&#62;
		}&#60;br /&#62;
	}&#60;br /&#62;
}&#60;br /&#62;
else&#60;br /&#62;
{&#60;br /&#62;
	$displayPost[$id] = true;&#60;br /&#62;
	$all_posts_count ++;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;endwhile; endif;&#60;br /&#62;
wp_reset_query();&#60;/p&#62;
&#60;p&#62;#non sortable items get pagination&#60;br /&#62;
if($portfolioInfo[3] != 'sort')&#60;br /&#62;
{&#60;br /&#62;
	$show_posts_count = count($displayPost);&#60;br /&#62;
	$paginationNumber = ceil($show_posts_count/$real_posts_per_page);&#60;/p&#62;
&#60;p&#62;	$loopCount = 0;&#60;br /&#62;
	if(is_array($displayPost))&#60;br /&#62;
	{&#60;br /&#62;
		foreach ($displayPost as $key=&#38;gt;$value)&#60;br /&#62;
		{&#60;br /&#62;
			$loopCount++;&#60;br /&#62;
			if(($loopCount &#38;lt;= ($paged-1)*$real_posts_per_page) &#124;&#124; $loopCount &#38;gt; $paged *$real_posts_per_page)&#60;br /&#62;
			{&#60;br /&#62;
				unset($displayPost[$key]);&#60;br /&#62;
			}&#60;/p&#62;
&#60;p&#62;		}&#60;br /&#62;
	}&#60;br /&#62;
}&#60;br /&#62;
//end workaround&#60;/p&#62;
&#60;p&#62;get_header();&#60;/p&#62;
&#60;p&#62;?&#38;gt;&#60;/p&#62;
&#60;p&#62;&#38;lt;div class=&#34;wrapper fullwidth&#34; id='wrapper_main'&#38;gt;&#60;/p&#62;
&#60;p&#62;	&#38;lt;div class=&#34;center&#34;&#38;gt;		&#60;/p&#62;
&#60;p&#62;		&#38;lt;div id=&#34;main&#34; class='portfolio'&#38;gt;&#60;/p&#62;
&#60;p&#62;			&#38;lt;?php &#60;/p&#62;
&#60;p&#62;			if($additional_loop-&#38;gt;have_posts()) :&#60;/p&#62;
&#60;p&#62;			$columns = $portfolioInfo[0]; // how many items beside each other?&#60;/p&#62;
&#60;p&#62;			$count = 1;&#60;br /&#62;
			$last = '';&#60;/p&#62;
&#60;p&#62;			$openImage = 'lightbox';&#60;br /&#62;
			if($k_option['portfolio']['portfolio_click'] == 2) $openImage = 'permalink';&#60;/p&#62;
&#60;p&#62;			while ($additional_loop-&#38;gt;have_posts()) : $additional_loop-&#38;gt;the_post(); &#60;/p&#62;
&#60;p&#62;			if($displayPost[$id])&#60;br /&#62;
			{&#60;/p&#62;
&#60;p&#62;				if($count == 1) echo '&#38;lt;div class=&#34;entry portfolio_entry entry_'.$portfolioInfo[1].'&#34;&#38;gt;';&#60;br /&#62;
				if($count == $columns) $last = 'last';&#60;/p&#62;
&#60;p&#62;				$prev_image = kriesi_post_thumb($post-&#38;gt;ID, array('size'=&#38;gt; array($portfolioInfo[2],'_preview_medium'),&#60;br /&#62;
																 'wh' =&#38;gt; $k_option['custom']['imgSize'][$portfolioInfo[2]],&#60;br /&#62;
																 'display_link' =&#38;gt; array($openImage),&#60;br /&#62;
																'linkurl' =&#38;gt; array ('XL','_preview_big'),&#60;br /&#62;
																'link_attr' =&#38;gt; array('class'=&#38;gt;'preloading')&#60;br /&#62;
																));&#60;/p&#62;
&#60;p&#62;					echo &#34;&#38;lt;div class='&#34;.$portfolioInfo[1].&#34; sortable all_sort &#34;.$class_add[$id].&#34; $last'&#38;gt;&#34;;&#60;/p&#62;
&#60;p&#62;					if($prev_image != &#34;&#34;) echo &#34;&#38;lt;span class='framed framed_&#34;.$portfolioInfo[1].&#34;'&#38;gt;&#38;lt;span&#38;gt;&#34;.$prev_image.&#34;&#38;lt;/span&#38;gt;&#38;lt;/span&#38;gt;&#34;;&#60;br /&#62;
					echo &#34;&#38;lt;div class='portfolio_content'&#38;gt;&#34;;&#60;br /&#62;
					echo &#34;&#38;lt;h3 class='name_sort'&#38;gt;&#60;a href='&#34;.get_permalink().&#34;' title='&#34;.get_the_title().&#34;'&#62;&#34;.get_the_title().&#34;&#60;/a&#62;&#38;lt;/h3&#38;gt;&#34;;&#60;br /&#62;
					echo &#34;&#38;lt;span class='date_sort hidden'&#38;gt;&#34;;&#60;br /&#62;
					the_time('Y m d H i s');&#60;/p&#62;
&#60;p&#62;					echo &#34;&#38;lt;/span&#38;gt;&#34;;&#60;/p&#62;
&#60;p&#62;					the_excerpt();  &#60;/p&#62;
&#60;p&#62;					echo &#34;&#60;a href='&#34;.get_permalink().&#34;'&#62;&#34;.__('Read more','avisio').&#34;&#60;/a&#62;&#34;;&#60;br /&#62;
					echo &#34;&#38;lt;/div&#38;gt;&#38;lt;/div&#38;gt;&#34;;&#60;/p&#62;
&#60;p&#62;				if($count == $columns)&#60;br /&#62;
				{&#60;br /&#62;
					$last = '';&#60;br /&#62;
					$count = 0;&#60;br /&#62;
					echo &#34;&#38;lt;/div&#38;gt;&#34;;&#60;br /&#62;
				}&#60;br /&#62;
				$count ++;&#60;br /&#62;
			}&#60;br /&#62;
			endwhile; &#60;/p&#62;
&#60;p&#62;			if($count != 1) echo &#34;&#38;lt;/div&#38;gt;&#34;;&#60;/p&#62;
&#60;p&#62;			endif;&#60;br /&#62;
			kriesi_pagination($paginationNumber);&#60;br /&#62;
			wp_reset_query();&#60;br /&#62;
			?&#38;gt;&#60;/p&#62;
&#60;p&#62;&#38;lt;!--end main--&#38;gt;&#60;br /&#62;
		&#38;lt;/div&#38;gt;&#60;/p&#62;
&#60;p&#62;&#38;lt;?php get_footer(); ?&#38;gt;&#34;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "get custom field in the loop"</title>
			<link>http://www.kriesi.at/support/topic/get-custom-field-in-the-loop#post-72105</link>
			<pubDate>Tue, 21 Aug 2012 15:32:15 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">72105@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;You need to use following code:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$myvalue = get_post_meta($post-&#38;gt;ID, &#38;#39;key_1&#38;#39;, true);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Obviously you need to replace &#34;key_1&#34; with your custom field key value and you can also rename the variable. If you want to get an array set the last value to false instead of true.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>amancuso on "get custom field in the loop"</title>
			<link>http://www.kriesi.at/support/topic/get-custom-field-in-the-loop#post-72093</link>
			<pubDate>Tue, 21 Aug 2012 13:28:42 +0000</pubDate>
			<dc:creator>amancuso</dc:creator>
			<guid isPermaLink="false">72093@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I have created a custom field for portfolio items, if I display the field in the single portfolio item page it works fine, but I don't know how to modify the template_portfolio.php page for display the value of the field in the loop.&#60;br /&#62;
Can anyone help me?&#60;br /&#62;
tanks in advance&#60;/p&#62;
&#60;p&#62;Andrea Mancuso
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kriesi on "product pages/categories how to set template and product page extra tab?"</title>
			<link>http://www.kriesi.at/support/topic/product-pagescategories-how-to-set-template-and-product-page-extra-tab#post-47256</link>
			<pubDate>Tue, 20 Mar 2012 21:27:00 +0000</pubDate>
			<dc:creator>Kriesi</dc:creator>
			<guid isPermaLink="false">47256@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey! &#60;/p&#62;
&#60;p&#62; thanks for your help kingRobb!&#60;/p&#62;
&#60;p&#62;@Herzfamily: would you mind posting a link to your installation to show what you mean, maybe open a new thread, since this one is getting a little messy :) &#60;/p&#62;
&#60;p&#62; Best regards,&#60;br /&#62;
Kriesi
&#60;/p&#62;</description>
		</item>
		<item>
			<title>stickFinger on "product pages/categories how to set template and product page extra tab?"</title>
			<link>http://www.kriesi.at/support/topic/product-pagescategories-how-to-set-template-and-product-page-extra-tab#post-46663</link>
			<pubDate>Sat, 17 Mar 2012 00:46:06 +0000</pubDate>
			<dc:creator>stickFinger</dc:creator>
			<guid isPermaLink="false">46663@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;@KingRobb&#60;/p&#62;
&#60;p&#62;Thansk fpr sharing this code. Great :-)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>herzfamily on "product pages/categories how to set template and product page extra tab?"</title>
			<link>http://www.kriesi.at/support/topic/product-pagescategories-how-to-set-template-and-product-page-extra-tab#post-46662</link>
			<pubDate>Sat, 17 Mar 2012 00:27:21 +0000</pubDate>
			<dc:creator>herzfamily</dc:creator>
			<guid isPermaLink="false">46662@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey Kriesi, &#60;/p&#62;
&#60;p&#62;I have a question (similar to above mgason's question) related to woocommerce Product Pages -  I tried to add some intro content before products and for some reason it's appearing under the title as subtitle. How do I fix that? Please help.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>KingRobb on "product pages/categories how to set template and product page extra tab?"</title>
			<link>http://www.kriesi.at/support/topic/product-pagescategories-how-to-set-template-and-product-page-extra-tab#post-43377</link>
			<pubDate>Fri, 24 Feb 2012 17:52:03 +0000</pubDate>
			<dc:creator>KingRobb</dc:creator>
			<guid isPermaLink="false">43377@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey - I don't know if anyone will find this usefull or not but I found a way to add tabs beside the Description tab and then populate them with custom fields which I add on the edit product page. The custom field will support shortcodes as well and the tab will not display if it is empty. Anyway, I had tried the info mentioned above but the link no longer works. Here is what I did ....&#60;br /&#62;
(now if only we could get away with adding new tabs and content in the product data box itself instead of using custom fields)&#60;/p&#62;
&#60;p&#62;&#60;u&#62;STEP 1&#60;/u&#62;&#60;br /&#62;
For each new Tab that you want you need to create 2 new pages. (My example below is creating a &#34;Specifications&#34; Tab)&#60;br /&#62;
Create new files here ... /plugins/woocommerce/templates/single-product/tabs/&#60;br /&#62;
One is for the Tab Label the other is for the Tab Content.&#60;/p&#62;
&#60;p&#62;specifications.php &#60;em&#62;&#38;lt;-contains tab contents&#60;/em&#62;&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
/**
 * Specifications Tab
 */
global $woocommerce, $post;
$meta_content = apply_filters(&#38;#39;the_content&#38;#39;, get_post_meta($post-&#38;gt;ID, &#38;#39;specifications&#38;#39;, true));
?&#38;gt;
&#38;lt;div class=&#38;quot;panel&#38;quot; id=&#38;quot;tab-specifications&#38;quot;&#38;gt;
	&#38;lt;?php $heading = apply_filters(&#38;#39;woocommerce_product_specifications_heading&#38;#39;, __(&#38;#39;Product Specifications&#38;#39;, &#38;#39;woocommerce&#38;#39;)); ?&#38;gt;
	&#38;lt;h2&#38;gt;&#38;lt;?php echo $heading; ?&#38;gt;&#38;lt;/h2&#38;gt;
	&#38;lt;?php echo $meta_content; ?&#38;gt;
&#38;lt;/div&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;tab-specifications.php &#60;em&#62;&#38;lt;-contains actual tab label text&#60;/em&#62;&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
// Get Custom Field &#38;quot;specifications&#38;quot; meta data and hide tab if empty
global $woocommerce, $post;
$meta_content = apply_filters(&#38;#39;the_content&#38;#39;, get_post_meta($post-&#38;gt;ID, &#38;#39;specifications&#38;#39;, true));
if (!empty($meta_content)) { ?&#38;gt;
&#38;lt;li&#38;gt;&#38;lt;a href=&#38;quot;#tab-specifications&#38;quot;&#38;gt;&#38;lt;?php _e(&#38;#39;Specifications&#38;#39;, &#38;#39;woocommerce&#38;#39;); ?&#38;gt;&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;
&#38;lt;?php } ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;&#60;u&#62;STEP 2&#60;/u&#62;&#60;br /&#62;
Add your tabs to the woocommerce template here ... /plugins/woocommerce/woocommerce-template.php&#60;br /&#62;
Starting at line 375 you should see function definitions for &#34;Product page tabs&#34; and &#34;Product page tab panels&#34;.&#60;br /&#62;
Add your new tab and panel there ....&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;// THIS IS MY NEW SPECIFICATIONS TAB
if (!function_exists(&#38;#39;woocommerce_product_specifications_tab&#38;#39;)) {
	function woocommerce_product_specifications_tab() {
		woocommerce_get_template(&#38;#39;single-product/tabs/tab-specifications.php&#38;#39;);
	}
}
// THIS IS MY NEW SPECIFICATIONS PANEL
if (!function_exists(&#38;#39;woocommerce_product_specifications_panel&#38;#39;)) {
	function woocommerce_product_specifications_panel() {
		woocommerce_get_template(&#38;#39;single-product/tabs/specifications.php&#38;#39;);
	}
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;&#60;u&#62;STEP 3&#60;/u&#62;&#60;br /&#62;
Add hooks to your new tabs here ... /plugins/woocommerce/woocommerce-hooks.php&#60;br /&#62;
Starting at line 73, add your backticks in the &#34;Product page tabs&#34; sections&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;add_action( &#38;#39;woocommerce_product_tabs&#38;#39;, &#38;#39;woocommerce_product_specifications_tab&#38;#39;, 40 );
add_action( &#38;#39;woocommerce_product_tab_panels&#38;#39;, &#38;#39;woocommerce_product_specifications_panel&#38;#39;, 40 );&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;&#60;u&#62;STEP 4&#60;/u&#62;&#60;br /&#62;
Edit your product and &#34;Add New Custom Field&#34; and its &#34;Value&#34;&#60;/p&#62;
&#60;p&#62;&#60;strong&#62;&#60;em&#62;That is it - you should be done!&#60;/em&#62;&#60;/strong&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Custom Field for images"</title>
			<link>http://www.kriesi.at/support/topic/custom-field-for-images#post-42673</link>
			<pubDate>Tue, 21 Feb 2012 07:44:32 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">42673@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
You can get the slideshow images with following code:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;$slides = avia_post_meta($this-&#38;gt;post_id, &#38;#39;slideshow&#38;#39;);&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>eddygame on "Custom Field for images"</title>
			<link>http://www.kriesi.at/support/topic/custom-field-for-images#post-42605</link>
			<pubDate>Mon, 20 Feb 2012 20:14:51 +0000</pubDate>
			<dc:creator>eddygame</dc:creator>
			<guid isPermaLink="false">42605@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I've just started using the 'nrelate' flyout plugin - to work correctly it asks for the 'custom field for image' I've tried a few options but nothing seems to work.&#60;/p&#62;
&#60;p&#62;What is the 'custom field' name for images in shoutbox?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>livetooextreme on "product pages/categories how to set template and product page extra tab?"</title>
			<link>http://www.kriesi.at/support/topic/product-pagescategories-how-to-set-template-and-product-page-extra-tab#post-40091</link>
			<pubDate>Sat, 04 Feb 2012 06:38:28 +0000</pubDate>
			<dc:creator>livetooextreme</dc:creator>
			<guid isPermaLink="false">40091@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Another way you could add &#34;additional tabs&#34; is by using the tabs shortcode to add tabs inside of the product description area.  It's maybe not as &#34;clean,&#34; but I just tried it and it looks pretty good.  Not ideal, but not bad either.  I think it will work for me.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "product pages/categories how to set template and product page extra tab?"</title>
			<link>http://www.kriesi.at/support/topic/product-pagescategories-how-to-set-template-and-product-page-extra-tab#post-36877</link>
			<pubDate>Sat, 07 Jan 2012 12:58:30 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">36877@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Glad that I could help you :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>mgason on "product pages/categories how to set template and product page extra tab?"</title>
			<link>http://www.kriesi.at/support/topic/product-pagescategories-how-to-set-template-and-product-page-extra-tab#post-36843</link>
			<pubDate>Sat, 07 Jan 2012 03:50:25 +0000</pubDate>
			<dc:creator>mgason</dc:creator>
			<guid isPermaLink="false">36843@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks, great support
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "product pages/categories how to set template and product page extra tab?"</title>
			<link>http://www.kriesi.at/support/topic/product-pagescategories-how-to-set-template-and-product-page-extra-tab#post-36063</link>
			<pubDate>Thu, 29 Dec 2011 11:21:43 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">36063@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;You can try to replace following line in template-blog.php:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;div class=&#38;#39;container_wrap &#38;lt;?php echo $avia_config[&#38;#39;layout&#38;#39;]; ?&#38;gt;&#38;#39; id=&#38;#39;main&#38;#39;&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;with:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;div class=&#38;#39;container_wrap sidebar_left single_sidebar&#38;#39; id=&#38;#39;main&#38;#39;&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and set the standard layout to &#34;right sidebar&#34;.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>mgason on "product pages/categories how to set template and product page extra tab?"</title>
			<link>http://www.kriesi.at/support/topic/product-pagescategories-how-to-set-template-and-product-page-extra-tab#post-35998</link>
			<pubDate>Fri, 23 Dec 2011 21:57:41 +0000</pubDate>
			<dc:creator>mgason</dc:creator>
			<guid isPermaLink="false">35998@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks great information on the product data, that was exactly what I wanted.&#60;/p&#62;
&#60;p&#62;I still can not get this clear though.&#60;br /&#62;
I want my blog to have left sidebar and my product category pages to have a right sidebar. Can I do this? If so, please give me basic instructions because I am not understanding it.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "product pages/categories how to set template and product page extra tab?"</title>
			<link>http://www.kriesi.at/support/topic/product-pagescategories-how-to-set-template-and-product-page-extra-tab#post-35391</link>
			<pubDate>Mon, 19 Dec 2011 12:49:41 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">35391@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;1) Kriesi modifies the standard template - he adds some div containers around it (i.e. he uses the &#34;woocommerce_before_main_content&#34; and &#34;woocommerce_after_main_content&#34; action in abundance\woocommerce-config\config.php ). This also influences the layout/css styling of course. You can also change the action output in config.php.&#60;/p&#62;
&#60;p&#62;2) I just noticed that you mentioned the &#34;Additional information&#34; - is this the &#34;additional tab&#34; you mean? If yes, you can create it easily create it via admin backend.&#60;br /&#62;
 It will display a table which contains the attributes/values you enter for this product (i.e. like shape, color, size, etc.). Go to the product editor page (edit an existing one or create a new one) and then scroll down to the &#34;Product Data&#34; option field. There you'll find the &#34;Attributes&#34; tab which allows you to add a table with additional data. Howevver this tab doesn't allow you to add any content you like but just adds a table.&#60;/p&#62;
&#60;p&#62;However it's not a fexible tab (you can insert i.e. information without tables or rename it, etc.).
&#60;/p&#62;</description>
		</item>
		<item>
			<title>mgason on "product pages/categories how to set template and product page extra tab?"</title>
			<link>http://www.kriesi.at/support/topic/product-pagescategories-how-to-set-template-and-product-page-extra-tab#post-35357</link>
			<pubDate>Sun, 18 Dec 2011 21:42:04 +0000</pubDate>
			<dc:creator>mgason</dc:creator>
			<guid isPermaLink="false">35357@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;So just to be clear single product page layout changes require PHP template editing, they are not influenced by teh Default page Layout at all.&#60;br /&#62;
The product category pages inherit the blog template&#60;/p&#62;
&#60;p&#62;On the tabs. I can probably code it but Is there a template in the dummy content that has tabs like the demo? They did catch my attention before I bought the theme, I thought it would be standard if it was in the demo.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "product pages/categories how to set template and product page extra tab?"</title>
			<link>http://www.kriesi.at/support/topic/product-pagescategories-how-to-set-template-and-product-page-extra-tab#post-35353</link>
			<pubDate>Sun, 18 Dec 2011 21:29:26 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">35353@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
1) The template is provided by the woocommerce plugin. Kriesi just hooks into it and adds some content to the default product templates (you can find the code in abundance\woocommerce-config\config.php ). Basically you'd need to edit the plugin files to create a custom template (woocommerce/templates).&#60;/p&#62;
&#60;p&#62;2) Basically it's possible to add additional tabs - however it requires some coding knowledge/skills. You can use the &#34;woocommerce_product_tabs&#34; action: &#60;a href=&#34;http://www.woothemes.com/woocommerce-codex/extending-woocommerce/action-reference/&#34; rel=&#34;nofollow&#34;&#62;http://www.woothemes.com/woocommerce-codex/extending-woocommerce/action-reference/&#60;/a&#62;&#60;br /&#62;
to add a custom tab to the products panel. If you're no php developer it's a bit tricky though.&#60;/p&#62;
&#60;p&#62;3) The importer can import the whole dummy content only. You can open abundance\includes\admin/dummy.xml with a text editor and copy/paste the required demo content manually.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>mgason on "product pages/categories how to set template and product page extra tab?"</title>
			<link>http://www.kriesi.at/support/topic/product-pagescategories-how-to-set-template-and-product-page-extra-tab#post-35338</link>
			<pubDate>Sun, 18 Dec 2011 20:28:04 +0000</pubDate>
			<dc:creator>mgason</dc:creator>
			<guid isPermaLink="false">35338@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;br /&#62;
2 questions. What determines the template used by the products page and product category pages? How do you assign one? Can I have it NOT be the same as the Blog template?&#60;/p&#62;
&#60;p&#62;How do you add another tab to the Individual product page like in the demo. &#34;Additional information&#34; Then how do you feed it the information?&#60;/p&#62;
&#60;p&#62;I did not import all the example files because I already had a site full of data that I am migrating to the theme. can I import parts of it? For example I saw that there was a custom Storefront template? I know thats 3 questions now ;-)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Custom fields for thumbnails"</title>
			<link>http://www.kriesi.at/support/topic/custom-fields-for-thumbnails#post-24814</link>
			<pubDate>Sun, 14 Aug 2011 07:11:00 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">24814@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Glad that you found the solution :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>owlconcept on "Custom fields for thumbnails"</title>
			<link>http://www.kriesi.at/support/topic/custom-fields-for-thumbnails#post-24804</link>
			<pubDate>Sat, 13 Aug 2011 19:42:53 +0000</pubDate>
			<dc:creator>owlconcept</dc:creator>
			<guid isPermaLink="false">24804@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;topic resolved ;)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>owlconcept on "Custom fields for thumbnails"</title>
			<link>http://www.kriesi.at/support/topic/custom-fields-for-thumbnails#post-24803</link>
			<pubDate>Sat, 13 Aug 2011 19:42:08 +0000</pubDate>
			<dc:creator>owlconcept</dc:creator>
			<guid isPermaLink="false">24803@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;And got the last part :D&#60;/p&#62;
&#60;p&#62;All i did was to comment this portion of code from the single.php file and bingo. Now the theme is fully working for me and my old site .. hehe&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$preview_image = kriesi_post_thumb($post-&#38;gt;ID, array(&#38;#39;size&#38;#39;=&#38;gt; array(&#38;#39;M&#38;#39;),
	&#38;#39;display_link&#38;#39; =&#38;gt; array(&#38;#39;lightbox&#38;#39;), 	// &#38;#39;_prev_image_link&#38;#39; or array(&#38;#39;lightbox&#38;#39;)
	&#38;#39;linkurl&#38;#39; =&#38;gt; array (&#38;#39;fullscreen&#38;#39;,&#38;#39;_preview_big&#38;#39;),
	&#38;#39;wh&#38;#39; =&#38;gt; $k_option[&#38;#39;custom&#38;#39;][&#38;#39;imgSize&#38;#39;][&#38;#39;M&#38;#39;]
));&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Thanks for your help ;)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>owlconcept on "Custom fields for thumbnails"</title>
			<link>http://www.kriesi.at/support/topic/custom-fields-for-thumbnails#post-24801</link>
			<pubDate>Sat, 13 Aug 2011 19:29:22 +0000</pubDate>
			<dc:creator>owlconcept</dc:creator>
			<guid isPermaLink="false">24801@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey. Me again.&#60;/p&#62;
&#60;p&#62;I was able to solve the link problem :)&#60;/p&#62;
&#60;p&#62;at very bottom of the file, i switched this code:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$defaultimage = $linkwrap[0].&#38;quot;&#38;lt;img src=&#38;#39;&#38;quot;.$image_URL.&#38;quot;&#38;#39; alt=&#38;#39;&#38;#39; title=&#38;#39;&#38;quot;.get_the_title().&#38;quot;&#38;#39; /&#38;gt;&#38;quot;.$linkwrap[1];
return $defaultimage;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;For this code:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;if (!isset($option[&#38;#39;size&#38;#39;][1]))
{
	$linkwrap[0] = &#38;#39;&#38;lt;a href=&#38;quot;&#38;#39;.get_permalink().&#38;#39;&#38;quot; title=&#38;quot;&#38;#39;.get_the_title().&#38;#39;&#38;quot;&#38;gt;&#38;#39;;
	$linkwrap[1] = &#38;#39;&#38;lt;/a&#38;gt;&#38;#39;;
        }

$defaultimage = $linkwrap[0].&#38;quot;&#38;lt;img src=&#38;#39;&#38;quot;.$image_URL.&#38;quot;&#38;#39; alt=&#38;#39;&#38;#39; title=&#38;#39;&#38;quot;.get_the_title().&#38;quot;&#38;#39; /&#38;gt;&#38;quot;.$linkwrap[1];
return $defaultimage;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Now i only need to figure out the square at the top of the posts :)&#60;br /&#62;
See this screeshot: &#60;a href=&#34;http://awesomescreenshot.com/0edijwf20&#34; rel=&#34;nofollow&#34;&#62;http://awesomescreenshot.com/0edijwf20&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Almost there ... lol
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
