<?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: Products single page Changes</title>
		<link>http://www.kriesi.at/support/topic/products-single-page-changes</link>
		<description>Support Forum - Topic: Products single page Changes</description>
		<language>en-US</language>
		<pubDate>Sun, 19 May 2013 11:08:39 +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/products-single-page-changes" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Beard on "Products single page Changes"</title>
			<link>http://www.kriesi.at/support/topic/products-single-page-changes#post-35587</link>
			<pubDate>Tue, 20 Dec 2011 23:14:30 +0000</pubDate>
			<dc:creator>Chris Beard</dc:creator>
			<guid isPermaLink="false">35587@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;/p&#62;
&#60;p&#62;you can disable comments on your product pages, this will get rid of the reviews (they just use comments). If you'd like to take it further you'd have to edit the WooCommerce plugin which is beyond the scope of the support forum (not Kriesi's code). I can tell you the code that needs to be edited is located in woocommerce\woocommerce_template_functions.php&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;div class=&#38;quot;woocommerce_tabs&#38;quot;&#38;gt;
			&#38;lt;ul class=&#38;quot;tabs&#38;quot;&#38;gt;
				&#38;lt;?php do_action(&#38;#39;woocommerce_product_tabs&#38;#39;); ?&#38;gt;
			&#38;lt;/ul&#38;gt;
			&#38;lt;?php do_action(&#38;#39;woocommerce_product_tab_panels&#38;#39;); ?&#38;gt;
		&#38;lt;/div&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You can try contacting &#60;a href=&#34;http://www.woothemes.com/woocommerce/&#34;&#62;WooCommerce&#60;/a&#62; and see if they're willing to help you.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>wmastorelli on "Products single page Changes"</title>
			<link>http://www.kriesi.at/support/topic/products-single-page-changes#post-35409</link>
			<pubDate>Mon, 19 Dec 2011 14:00:31 +0000</pubDate>
			<dc:creator>wmastorelli</dc:creator>
			<guid isPermaLink="false">35409@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thank you very much!&#60;/p&#62;
&#60;p&#62;Maybe I didn't make clear myself, sorry.. What Im trying to do is: instead 2 spaces for text, on the single page (description and Exerpt. I would like to see the description in the same place which appear Excerpt, but in the plain area. I will insert the tab short code there and I don't need to show the description area. Do you know what I mean?&#60;/p&#62;
&#60;p&#62;Cheer!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Products single page Changes"</title>
			<link>http://www.kriesi.at/support/topic/products-single-page-changes#post-35389</link>
			<pubDate>Mon, 19 Dec 2011 12:41:57 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">35389@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
1) Open up abundance\woocommerce-config\config.php and search for following code:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;function avia_woocommerceproduct_prev_image_after()
{
	global $avia_config;
	$avia_config[&#38;#39;currently_viewing&#38;#39;] = &#38;quot;shop_single&#38;quot;;
	$avia_config[&#38;#39;layout&#38;#39;] = &#38;#39;sidebar_left&#38;#39;;

	echo &#38;quot;&#38;lt;/div&#38;gt;&#38;quot;; //end content
	get_sidebar();
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You can add your text before the &#34;//end content&#34; line. I'd also use echo like:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function avia_woocommerceproduct_prev_image_after()
{
	global $avia_config;
	$avia_config[&#38;#39;currently_viewing&#38;#39;] = &#38;quot;shop_single&#38;quot;;
	$avia_config[&#38;#39;layout&#38;#39;] = &#38;#39;sidebar_left&#38;#39;;

        echo &#38;quot;&#38;lt;span&#38;gt;Rollover for zoom&#38;lt;/span&#38;gt;&#38;quot;;
	echo &#38;quot;&#38;lt;/div&#38;gt;&#38;quot;; //end content
	get_sidebar();
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;b) It's not possible without a js function rewrite - I'm sorry.&#60;/p&#62;
&#60;p&#62;c) You could insert a tab shortcode into the content area or you can modify the product template (they can be found in wp-content\plugins\woocommerce\templates folder).
&#60;/p&#62;</description>
		</item>
		<item>
			<title>wmastorelli on "Products single page Changes"</title>
			<link>http://www.kriesi.at/support/topic/products-single-page-changes#post-35354</link>
			<pubDate>Sun, 18 Dec 2011 21:30:46 +0000</pubDate>
			<dc:creator>wmastorelli</dc:creator>
			<guid isPermaLink="false">35354@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi there,&#60;/p&#62;
&#60;p&#62;This forum really help us!.. congratulations!.. So, I need some help and advice to resolve few issues:&#60;/p&#62;
&#60;p&#62;a) I'd like to display under the main picture (single product page) the message: Rollover for zoom.&#60;/p&#62;
&#60;p&#62;b) Is it possible to show the zoom over the main picture like as: &#60;a href=&#34;http://www.everythingbutwater.com/browse/products/echo/chiffons/47149+113581+149.html&#34; rel=&#34;nofollow&#34;&#62;http://www.everythingbutwater.com/browse/products/echo/chiffons/47149+113581+149.html&#60;/a&#62;. So, once you place the mouse on the main picture I 'd like to have the zoom in the same box?&#60;/p&#62;
&#60;p&#62;c) Can I have a plain area instead a square grey box which show: Description and Reviews tab?.. Because I need to split the informations in few tabs. I mean, I just want to see a empty area to insert my own layout page.&#60;/p&#62;
&#60;p&#62;Cheers!
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
