<?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: How to show product price on product detail page?</title>
		<link>http://www.kriesi.at/support/topic/how-to-show-product-price-on-product-detail-page</link>
		<description>Support Forum - Topic: How to show product price on product detail page?</description>
		<language>en-US</language>
		<pubDate>Tue, 18 Jun 2013 07:11:34 +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/how-to-show-product-price-on-product-detail-page" rel="self" type="application/rss+xml" />

		<item>
			<title>Dude on "How to show product price on product detail page?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-show-product-price-on-product-detail-page#post-73855</link>
			<pubDate>Fri, 31 Aug 2012 17:09:46 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">73855@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I tested:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;add_action( &#38;#39;woocommerce_before_add_to_cart_button&#38;#39;, &#38;#39;inoplugs_price_container&#38;#39;, 50 );

function inoplugs_price_container()
{
		echo &#38;quot;&#38;lt;div class=&#38;#39;price_container&#38;#39;&#38;gt;&#38;quot;;
		woocommerce_template_single_price($post, $product);
		echo &#38;quot;&#38;lt;/div&#38;gt;&#38;quot;;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and it works for me. Maybe try to add following css code to css/custom.css:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;#top .template-shop-single .price_container {
    line-height: 1em;
    position: relative;
}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>janingo on "How to show product price on product detail page?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-show-product-price-on-product-detail-page#post-73809</link>
			<pubDate>Fri, 31 Aug 2012 14:03:31 +0000</pubDate>
			<dc:creator>janingo</dc:creator>
			<guid isPermaLink="false">73809@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Peter,&#60;/p&#62;
&#60;p&#62;thank you very much for your support. There is still no change at the product detail page. Changing the hook from &#34;woocommerce_after_add_to_cart_button&#34; to &#34;woocommerce_before_add_to_cart_button also did not work. Maybe we need a deeper look into the theme code of the file(s) regarding to woocommerce functionality?&#60;/p&#62;
&#60;p&#62;Best regards,&#60;br /&#62;
Jan
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "How to show product price on product detail page?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-show-product-price-on-product-detail-page#post-72856</link>
			<pubDate>Sat, 25 Aug 2012 16:51:25 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">72856@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey! &#60;/p&#62;
&#60;p&#62; I removed the is_object check from the code. Please try it again. &#60;/p&#62;
&#60;p&#62; Best regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>janingo on "How to show product price on product detail page?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-show-product-price-on-product-detail-page#post-72566</link>
			<pubDate>Thu, 23 Aug 2012 20:01:14 +0000</pubDate>
			<dc:creator>janingo</dc:creator>
			<guid isPermaLink="false">72566@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Peter,&#60;/p&#62;
&#60;p&#62;thanks for the workout but it did not handle anything.&#60;br /&#62;
i revert the first change &#60;/p&#62;
&#60;p&#62;remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 10, 2); &#60;/p&#62;
&#60;p&#62;back into the config.php at line where it was before. than i added your code solution at the buttom. Refresing browser a.s.o...but .nothing changes the situation. Like it was before the price in the single page product (product without variants) will not be shown. &#60;/p&#62;
&#60;p&#62;If you look at the page pls take notice that i now changed back to the first changes you offered me to do but it is not the happy end way. Maybe there is a part of code missing in your second option? Did you tried this code solution at your theme presentation? Did it work?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "How to show product price on product detail page?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-show-product-price-on-product-detail-page#post-72436</link>
			<pubDate>Thu, 23 Aug 2012 06:32:06 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">72436@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Revert the change I suggested before and add following code to the bottom of config.php:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;add_action( &#38;#39;woocommerce_after_add_to_cart_button&#38;#39;, &#38;#39;inoplugs_price_container&#38;#39;, 50 );

function inoplugs_price_container()
{
		echo &#38;quot;&#38;lt;div class=&#38;#39;price_container&#38;#39;&#38;gt;&#38;quot;;
		woocommerce_template_single_price($post, $product);
		echo &#38;quot;&#38;lt;/div&#38;gt;&#38;quot;;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You can change the hook from &#34;woocommerce_after_add_to_cart_button&#34; to &#34;woocommerce_before_add_to_cart_button&#34; if you like.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>janingo on "How to show product price on product detail page?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-show-product-price-on-product-detail-page#post-72090</link>
			<pubDate>Tue, 21 Aug 2012 13:25:16 +0000</pubDate>
			<dc:creator>janingo</dc:creator>
			<guid isPermaLink="false">72090@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Peter,&#60;/p&#62;
&#60;p&#62;or another clear way of layouting could be to set all other product informations (like name, price, qty, info tabs, Jetzt kaufen-Button a.s.o.) left beside the product picture(s). So it is possible more to see for a customer without scolling so much (monitor is more width than high)&#60;/p&#62;
&#60;p&#62;Best regards,&#60;br /&#62;
Jan
&#60;/p&#62;</description>
		</item>
		<item>
			<title>janingo on "How to show product price on product detail page?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-show-product-price-on-product-detail-page#post-72087</link>
			<pubDate>Tue, 21 Aug 2012 13:05:36 +0000</pubDate>
			<dc:creator>janingo</dc:creator>
			<guid isPermaLink="false">72087@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Peter,&#60;/p&#62;
&#60;p&#62;thanks for your reply. &#60;/p&#62;
&#60;p&#62;Pls only above the &#34;Jetzt kaufen&#34; Button but not under the Page Produkt Titel. Like the layout is basicly set in the Varianten-Produkt VANDOG Pretty Coat. Also to show the (german requirements) information abaout &#34;inklusive gesetzliche MwSt, zzgl. Versand&#34;.&#60;/p&#62;
&#60;p&#62;Best regards,&#60;br /&#62;
Jan
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "How to show product price on product detail page?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-show-product-price-on-product-detail-page#post-72049</link>
			<pubDate>Tue, 21 Aug 2012 08:27:31 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">72049@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey! &#60;/p&#62;
&#60;p&#62; Basically you don't want to show the price underneath the main/product title but underneath (or above?) the &#34;Jetzt kaufen&#34; Button? &#60;/p&#62;
&#60;p&#62; Best regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>janingo on "How to show product price on product detail page?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-show-product-price-on-product-detail-page#post-71882</link>
			<pubDate>Mon, 20 Aug 2012 12:28:51 +0000</pubDate>
			<dc:creator>janingo</dc:creator>
			<guid isPermaLink="false">71882@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Peter, &#60;/p&#62;
&#60;p&#62;first of all thanks for your reply. I saw the post but that didn't realy solve the problem.  &#60;/p&#62;
&#60;p&#62;Please take a look on the website (click on shop) &#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://vandog.cc/?post_type=product&#34; rel=&#34;nofollow&#34;&#62;http://vandog.cc/?post_type=product&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;to follow the Products in detail. On the shop page you will see two sample products, VANDOG Coat Prestige and VANDOG Pretty Coat.&#60;br /&#62;
Before i used your postet solution, the product prize was shown on the VANDOG Pretty Coat-Detail Page and only when i wrote an aktionspreis in one variant i was able to see the prize straigt over the quantity. Without specifying a &#34;Aktionspreis&#34; the prize will not be shown on the product detail page anywhere. VANDOG Coat Prestige is a product without variants and the was also not price shown (only at the Shop-Startpage).&#60;/p&#62;
&#60;p&#62;Now i did it in your posted way of solution and the prices are shown directly unter the product title and, at the variant product also over the Quantity. But at VANDOG Coat Prestige the price is not shown in the normal way direct unter the quantitiy (and over the Stock message) like it should be also at VANDOG Coat Prestige.&#60;br /&#62;
At all products the price should not be shown under the product title like the behavior is now with your solution. &#60;/p&#62;
&#60;p&#62;If you take a comparing look at both product pages (also quellcode) i am shure you will see what i mean. How could this be fixed?&#60;/p&#62;
&#60;p&#62;Sorry for my complicate way of demonstrating the failure.&#60;/p&#62;
&#60;p&#62;See You&#60;br /&#62;
Jan&#60;/p&#62;
&#60;p&#62;PS. If it is easier to understand what i mean, i will write in german language.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "How to show product price on product detail page?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-show-product-price-on-product-detail-page#post-71815</link>
			<pubDate>Mon, 20 Aug 2012 05:48:22 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">71815@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi! &#60;/p&#62;
&#60;p&#62; Open up flashlight/woocommerce-config/config.php und remove following line:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;remove_action( &#38;#39;woocommerce_single_product_summary&#38;#39;, &#38;#39;woocommerce_template_single_price&#38;#39;, 10, 2);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62; Best regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>janingo on "How to show product price on product detail page?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-show-product-price-on-product-detail-page#post-71558</link>
			<pubDate>Fri, 17 Aug 2012 14:54:29 +0000</pubDate>
			<dc:creator>janingo</dc:creator>
			<guid isPermaLink="false">71558@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi everybody,&#60;/p&#62;
&#60;p&#62;first of all thanks to the great support. &#60;/p&#62;
&#60;p&#62;I bought the flashlight theme but did not expected that the product price is not shown on the product detail page (see the demo). Not Price shown on the page with all informations to a single product. I just realised the &#34;Add to cart&#34; button and the posibility to solve quantity. How did you fixed to show the product price, because it is important in germany and also more simle for customers not to forget how much to pay for the product. Maybe a line of code is missing in a file (or is it a bug?). Wordpress, woocommerce and flashlite are installed in the current stable versions.&#60;/p&#62;
&#60;p&#62;See You&#60;br /&#62;
Jan
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
