<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.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>WPMU DEV Community &#187; Topic: Products Not Showing</title>
		<link>http://premium.wpmudev.org/forums/topic/products-not-showing</link>
		<description>WPMU DEV Community &#187; Topic: Products Not Showing</description>
		<language>en-US</language>
		<pubDate>Tue, 18 Jun 2013 07:04:31 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.2</generator>
		<atom:link href="http://premium.wpmudev.org/forums/rss/topic/products-not-showing" rel="self" type="application/rss+xml" />

		<item>
			<title>Aaron on "Products Not Showing"</title>
			<link>http://premium.wpmudev.org/forums/topic/products-not-showing#post-201552</link>
			<pubDate>Thu, 29 Mar 2012 20:04:28 +0000</pubDate>
			<dc:creator>Aaron</dc:creator>
			<guid isPermaLink="false">201552@http://premium.wpmudev.org/forums/</guid>
			<description><![CDATA[<p>I'm not really sure. It's the page template, so whatever hooks are tied to this pw_actionBlock('pw_page_post');
</p>]]></description>
		</item>
		<item>
			<title>HARALAMBOS on "Products Not Showing"</title>
			<link>http://premium.wpmudev.org/forums/topic/products-not-showing#post-201547</link>
			<pubDate>Thu, 29 Mar 2012 19:57:00 +0000</pubDate>
			<dc:creator>HARALAMBOS</dc:creator>
			<guid isPermaLink="false">201547@http://premium.wpmudev.org/forums/</guid>
			<description><![CDATA[<p>I fully understand. Can you just give me a guideline of what I could possibly check myself in that theme for making it work?
</p>]]></description>
		</item>
		<item>
			<title>Aaron on "Products Not Showing"</title>
			<link>http://premium.wpmudev.org/forums/topic/products-not-showing#post-201542</link>
			<pubDate>Thu, 29 Mar 2012 19:52:08 +0000</pubDate>
			<dc:creator>Aaron</dc:creator>
			<guid isPermaLink="false">201542@http://premium.wpmudev.org/forums/</guid>
			<description><![CDATA[<p>Ya they do stuff wierd. Not really able to dig into the code of that theme at the moment to try and make it compatible. I'd recommend switching themes.
</p>]]></description>
		</item>
		<item>
			<title>HARALAMBOS on "Products Not Showing"</title>
			<link>http://premium.wpmudev.org/forums/topic/products-not-showing#post-201537</link>
			<pubDate>Thu, 29 Mar 2012 19:45:22 +0000</pubDate>
			<dc:creator>HARALAMBOS</dc:creator>
			<guid isPermaLink="false">201537@http://premium.wpmudev.org/forums/</guid>
			<description><![CDATA[<p>In the prewwork theme case, this is their loop:</p>
<p>&#60;?php<br />
/**<br />
 * The loop that displays posts.<br />
 *<br />
 * The loop displays the posts and the post content.  See<br />
 * <a href="http://codex.wordpress.org/The_Loop" target="_blank">http://codex.wordpress.org/The_Loop</a> to understand it and<br />
 * <a href="http://codex.wordpress.org/Template_Tags" target="_blank">http://codex.wordpress.org/Template_Tags</a> to understand<br />
 * the tags used in it.<br />
 *<br />
 * This can be overridden in child themes with loop.php or<br />
 * loop-template.php, where 'template' is the loop context<br />
 * requested by a template. For example, loop-index.php would<br />
 * be used if it exists and we ask for the loop with:<br />
 * <code>get_template_part( 'loop', 'index' );</code><br />
 *<br />
 * Includes all the action blocks for archives, pages and posts.<br />
 *<br />
 * @since PressWork 1.0<br />
 */<br />
?&#62;</p>
<p>&#60;?php<br />
if(is_home()) do_action('pw_home_page'); </p>
<p>global $current_class;<br />
$current_class = 'odd';</p>
<p>if(is_home()) echo '&#60;div id="indexposts" class="clear fl"&#62;';<br />
?&#62;</p>
<p>&#60;?php while(have_posts()) : the_post(); ?&#62;<br />
    &#60;article id="post-&#60;?php the_ID(); ?&#62;" &#60;?php post_class(); ?&#62;&#62;<br />
		&#60;?php<br />
		if(is_category()) :<br />
			pw_actionBlock('pw_category_post');<br />
		elseif(is_author()) :<br />
			pw_actionBlock('pw_author_post');<br />
		elseif(is_archive()) :<br />
			pw_actionBlock('pw_archive_post');<br />
		elseif(is_search()) :<br />
			pw_actionBlock('pw_search_post');<br />
		elseif(is_page()) :<br />
			pw_actionBlock('pw_page_post');<br />
		elseif(is_single()) :<br />
			pw_actionBlock('pw_single_post');<br />
		else :<br />
			pw_actionBlock('pw_index_post');<br />
		endif;<br />
		?&#62;<br />
    &#60;/article&#62;<br />
&#60;?php endwhile; ?&#62;<br />
&#60;?php if(is_home()) echo '&#60;/div&#62;'; ?&#62;
</p>]]></description>
		</item>
		<item>
			<title>Aaron on "Products Not Showing"</title>
			<link>http://premium.wpmudev.org/forums/topic/products-not-showing#post-201526</link>
			<pubDate>Thu, 29 Mar 2012 19:34:46 +0000</pubDate>
			<dc:creator>Aaron</dc:creator>
			<guid isPermaLink="false">201526@http://premium.wpmudev.org/forums/</guid>
			<description><![CDATA[<p>My guess is both themes are not using the proper WP functions. They need to call<br />
<a href="http://codex.wordpress.org/Function_Reference/the_content" target="_blank">http://codex.wordpress.org/Function_Reference/the_content</a><br />
inside the loops, as is standard for all WP themes. If they don't MP can't filter them.
</p>]]></description>
		</item>
		<item>
			<title>HARALAMBOS on "Products Not Showing"</title>
			<link>http://premium.wpmudev.org/forums/topic/products-not-showing#post-201044</link>
			<pubDate>Wed, 28 Mar 2012 21:01:01 +0000</pubDate>
			<dc:creator>HARALAMBOS</dc:creator>
			<guid isPermaLink="false">201044@http://premium.wpmudev.org/forums/</guid>
			<description><![CDATA[<p>Hi GinaB, I am using the original theme of presswork. I haven't done any customizations yet. I believe it is easier to download it directly from here <a href="http://presswork.me/2011/presswork/" target="_blank">http://presswork.me/2011/presswork/</a>
</p>]]></description>
		</item>
		<item>
			<title>3SixtyEvolve on "Products Not Showing"</title>
			<link>http://premium.wpmudev.org/forums/topic/products-not-showing#post-201036</link>
			<pubDate>Wed, 28 Mar 2012 20:48:59 +0000</pubDate>
			<dc:creator>3SixtyEvolve</dc:creator>
			<guid isPermaLink="false">201036@http://premium.wpmudev.org/forums/</guid>
			<description><![CDATA[<p>Hi @pgt</p>
<p>Thank you for your feedback. </p>
<p>Now that we're sure that it's a theme issue, I will ask the Developer to have a look at your problem.  I do think he will ask to see your theme files, so if you can send that to me (gina at incsub dot com) in the interim that would be great.  </p>
<p>I look forward to hear back from you and getting this sorted for you.</p>
<p>Have a good day!</p>
<p>GinaB
</p>]]></description>
		</item>
		<item>
			<title>HARALAMBOS on "Products Not Showing"</title>
			<link>http://premium.wpmudev.org/forums/topic/products-not-showing#post-201033</link>
			<pubDate>Wed, 28 Mar 2012 20:45:32 +0000</pubDate>
			<dc:creator>HARALAMBOS</dc:creator>
			<guid isPermaLink="false">201033@http://premium.wpmudev.org/forums/</guid>
			<description><![CDATA[<p>Hi,</p>
<p>I have the exact same proble with the <a href="http://presswork.me/" target="_blank">http://presswork.me/</a> theme. You can see it in my test site <a href="http://agrotikiagora.gr/ktimamavrika/store/products/" target="_blank">http://agrotikiagora.gr/ktimamavrika/store/products/</a></p>
<p>As you can see, the title and the excrept is displayed. No thumbnail, no content, no styling.</p>
<p>I would appreciate a hint of what is going on.</p>
<p>Thank you
</p>]]></description>
		</item>
		<item>
			<title>pgt on "Products Not Showing"</title>
			<link>http://premium.wpmudev.org/forums/topic/products-not-showing#post-200894</link>
			<pubDate>Wed, 28 Mar 2012 16:44:55 +0000</pubDate>
			<dc:creator>pgt</dc:creator>
			<guid isPermaLink="false">200894@http://premium.wpmudev.org/forums/</guid>
			<description><![CDATA[<p>Hi Gina,</p>
<p>When Twenty Eleven is activated, the products show up on the category page and the product page shows correctly.</p>
<p>If the developer could assist me to get it working correctly with my theme that would be great.</p>
<p>Thank you
</p>]]></description>
		</item>
		<item>
			<title>3SixtyEvolve on "Products Not Showing"</title>
			<link>http://premium.wpmudev.org/forums/topic/products-not-showing#post-200727</link>
			<pubDate>Wed, 28 Mar 2012 10:19:51 +0000</pubDate>
			<dc:creator>3SixtyEvolve</dc:creator>
			<guid isPermaLink="false">200727@http://premium.wpmudev.org/forums/</guid>
			<description><![CDATA[<p>Hi @pgt</p>
<p>Greetings from the WPMU DEV Support Team and thank you for being a member!</p>
<p>To rule out any conflict with your current theme from ThemeForest and the MarketPress Plugin, please activate the standard WordPress Twenty Eleven theme and let me know if you're still facing the same issues.  If you don't find the same problems, that would mean that you're theme is not compatible with the MarketPress Plugin.  The Developer might be able to assist with a workaround to fix this, so we'll call in his help if need be.  </p>
<p>If the errors are still there after you changed to the Twenty Eleven theme, then we would have to consider a plugin conflict.  To see which plugin(s) is conflicting with MarketPress, please deactivate all other plugins and activate them one by one, checking each time to see if the problem persist, until you find the culprit.  </p>
<p>So a bit of homework for you :).  Please let me know your findings. </p>
<p>Look forward to hear back from you.</p>
<p>Have a good day!</p>
<p>GinaB
</p>]]></description>
		</item>
		<item>
			<title>pgt on "Products Not Showing"</title>
			<link>http://premium.wpmudev.org/forums/topic/products-not-showing#post-200651</link>
			<pubDate>Wed, 28 Mar 2012 03:16:27 +0000</pubDate>
			<dc:creator>pgt</dc:creator>
			<guid isPermaLink="false">200651@http://premium.wpmudev.org/forums/</guid>
			<description><![CDATA[<p>I am running Wordpress 3.3.1 and the Goodnews theme version 2.4.1: <a href="http://themeforest.net/item/goodnews-premium-wordpress-newsmagazine/1150692" target="_blank">http://themeforest.net/item/goodnews-premium-wordpress-newsmagazine/1150692</a>.  Whenever I create a product, all that is showing up on the product page is the content entered in the post content field (no option to buy or anything else).</p>
<p>The products do not show up in the store page or in the product category pages neither.  The product categories do show up in the store. </p>
<p>I have attached a screen shot of the store and of the product page for a test product.  Please let me know if you guys have any insight.</p>
<p>Thank you</p>
<p> &lt;a alt=&#039;thumbnail-11342&#039; class=&#039;bb_attachments_link lightbox&#039; href=&#039;http://premium.wpmudev.org/forums/?bb_attachments=200651&amp;bbat=11342&#039;&gt;&lt;img src=&#039;http://premium.wpmudev.org/forums/?bb_attachments=200651&amp;bbat=11342&amp;inline&#039; /&gt;&lt;/a&gt; &lt;a alt=&#039;thumbnail-11343&#039; class=&#039;bb_attachments_link lightbox&#039; href=&#039;http://premium.wpmudev.org/forums/?bb_attachments=200651&amp;bbat=11343&#039;&gt;&lt;img src=&#039;http://premium.wpmudev.org/forums/?bb_attachments=200651&amp;bbat=11343&amp;inline&#039; /&gt;&lt;/a&gt;
</p>]]></description>
		</item>

	</channel>
</rss>