<?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: Price for Specific Product</title>
		<link>http://www.kriesi.at/support/topic/price-for-specific-product</link>
		<description>Support Forum - Topic: Price for Specific Product</description>
		<language>en-US</language>
		<pubDate>Sat, 18 May 2013 18:15:46 +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/price-for-specific-product" rel="self" type="application/rss+xml" />

		<item>
			<title>Dude on "Price for Specific Product"</title>
			<link>http://www.kriesi.at/support/topic/price-for-specific-product#post-77388</link>
			<pubDate>Wed, 26 Sep 2012 06:30:04 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">77388@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;If you're not sure if your ftp login credentials are correct please contact your hoster or use your bluhost user panel to get the correct data. It really depends on the hoster and it can vary dramatically. Eg my hoster would accept www. pramcuddle.com (without the http:// protocol prefix) but again it depends on the hoster and we can't give you a general answer.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>johnnygoodsir on "Price for Specific Product"</title>
			<link>http://www.kriesi.at/support/topic/price-for-specific-product#post-77366</link>
			<pubDate>Wed, 26 Sep 2012 03:01:23 +0000</pubDate>
			<dc:creator>johnnygoodsir</dc:creator>
			<guid isPermaLink="false">77366@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Ismael&#60;br /&#62;
I downloaded filezilla and struck a hurdle straight off. When it asks for my host, is my host my website address &#60;a href=&#34;http://www.pramcuddle.com&#34; rel=&#34;nofollow&#34;&#62;http://www.pramcuddle.com&#60;/a&#62; or the people that host my site - Bluehost? Im trying both with no success. any ideas? thanks Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Price for Specific Product"</title>
			<link>http://www.kriesi.at/support/topic/price-for-specific-product#post-77192</link>
			<pubDate>Tue, 25 Sep 2012 05:15:10 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">77192@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Nick,&#60;/p&#62;
&#60;p&#62;You can open that via an ftp software like filezilla. Just open your site via ftp and go to public_html &#38;gt; wp-content &#38;gt; plugins &#38;gt; woocommerce &#38;gt; templates &#38;gt; single-product &#38;gt; title.php&#60;/p&#62;
&#60;p&#62;All of those are folders except title.php. If you are new to ftp, try to check this link: &#60;a href=&#34;http://wiki.filezilla-project.org/Using&#34; rel=&#34;nofollow&#34;&#62;http://wiki.filezilla-project.org/Using&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Hope this helps. :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>johnnygoodsir on "Price for Specific Product"</title>
			<link>http://www.kriesi.at/support/topic/price-for-specific-product#post-77172</link>
			<pubDate>Mon, 24 Sep 2012 22:19:06 +0000</pubDate>
			<dc:creator>johnnygoodsir</dc:creator>
			<guid isPermaLink="false">77172@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Ismael&#60;br /&#62;
thanks fro your reply. Sorry, I'm such a novice - but when you say - open wp-content\plugins\woocommerce\templates\single-product\title.php&#60;br /&#62;
how do I open that up?&#60;br /&#62;
thanks for your help, Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Price for Specific Product"</title>
			<link>http://www.kriesi.at/support/topic/price-for-specific-product#post-75043</link>
			<pubDate>Sun, 09 Sep 2012 10:00:48 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">75043@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi johnnygoodsir,&#60;/p&#62;
&#60;p&#62;Kindly open wp-content\plugins\woocommerce\templates\single-product\title.php and you would see this code:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
/**
 * Single Product Title
 */
?&#38;gt;
&#38;lt;h1 itemprop=&#38;quot;name&#38;quot; class=&#38;quot;product_title entry-title&#38;quot;&#38;gt;&#38;lt;?php the_title(); ?&#38;gt;&#38;lt;/h1&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Replace it with this code:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
/**
 * Single Product Title
 */
 global $post, $product;
?&#38;gt;
&#38;lt;h1 itemprop=&#38;quot;name&#38;quot; class=&#38;quot;product_title entry-title&#38;quot;&#38;gt;&#38;lt;?php the_title(); ?&#38;gt;&#38;lt;/h1&#38;gt;
&#38;lt;h1 class=&#38;quot;custom-product-price&#38;quot;&#38;gt;&#38;lt;?php echo $product-&#38;gt;get_price_html(); ?&#38;gt;&#38;lt;/h1&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;And on your Quick CSS(can be found inside WP Dashboard), you can this code:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.custom-product-price {
color: red;
font-size: 16px;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Just adjust the color and font-size to your liking. Hope this helps. :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>johnnygoodsir on "Price for Specific Product"</title>
			<link>http://www.kriesi.at/support/topic/price-for-specific-product#post-74912</link>
			<pubDate>Sat, 08 Sep 2012 07:35:57 +0000</pubDate>
			<dc:creator>johnnygoodsir</dc:creator>
			<guid isPermaLink="false">74912@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I bought the flashlight theme and love it thanks.&#60;br /&#62;
But the product price is not shown on the product detail page. I want to show price not only on the All Products page (which it does) but also the detailed product page - at present just Add to Cart is shown - but no price. How do I resolve this one - please guide me through this one as I am a bit of a novice. thanks for your help, Nick
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
