<?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: Another Cart Question</title>
		<link>http://www.kriesi.at/support/topic/another-cart-question</link>
		<description>Support Forum - Topic: Another Cart Question</description>
		<language>en-US</language>
		<pubDate>Thu, 23 May 2013 17:35:55 +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/another-cart-question" rel="self" type="application/rss+xml" />

		<item>
			<title>Ismael on "Another Cart Question"</title>
			<link>http://www.kriesi.at/support/topic/another-cart-question#post-72011</link>
			<pubDate>Tue, 21 Aug 2012 03:17:41 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">72011@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Minnoe,&#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>minnoe on "Another Cart Question"</title>
			<link>http://www.kriesi.at/support/topic/another-cart-question#post-72008</link>
			<pubDate>Tue, 21 Aug 2012 03:09:56 +0000</pubDate>
			<dc:creator>minnoe</dc:creator>
			<guid isPermaLink="false">72008@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thank you,&#60;br /&#62;
Minnoe
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Another Cart Question"</title>
			<link>http://www.kriesi.at/support/topic/another-cart-question#post-71825</link>
			<pubDate>Mon, 20 Aug 2012 06:19:16 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">71825@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I was about to answer this on another thread which is obviously the same here. Yes, that is correct, I think you are talking about the checkout page not the cart page.&#60;/p&#62;
&#60;p&#62;Please stick on your post. :)&#60;/p&#62;
&#60;p&#62;Cheers,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Another Cart Question"</title>
			<link>http://www.kriesi.at/support/topic/another-cart-question#post-71823</link>
			<pubDate>Mon, 20 Aug 2012 06:13:30 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">71823@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Because you asked how to edit the template directly - you need to use a ftp software like filezilla. Connect to your server and navigate to wp-content/plugins/woocommerce/classes/class-wc-checkout.php and search for following code:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$this-&#38;gt;checkout_fields[&#38;#39;order&#38;#39;]	= array(
			&#38;#39;order_comments&#38;#39; =&#38;gt; array(
				&#38;#39;type&#38;#39; =&#38;gt; &#38;#39;textarea&#38;#39;,
				&#38;#39;class&#38;#39; =&#38;gt; array(&#38;#39;notes&#38;#39;),
				&#38;#39;label&#38;#39; =&#38;gt; __(&#38;#39;Order Notes&#38;#39;, &#38;#39;woocommerce&#38;#39;),
				&#38;#39;placeholder&#38;#39; =&#38;gt; _x(&#38;#39;Notes about your order, e.g. special notes for delivery.&#38;#39;, &#38;#39;placeholder&#38;#39;, &#38;#39;woocommerce&#38;#39;)
				)
			);&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>Dude on "Another Cart Question"</title>
			<link>http://www.kriesi.at/support/topic/another-cart-question#post-71772</link>
			<pubDate>Sun, 19 Aug 2012 17:29:08 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">71772@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Try to add following code to functions.php (at the very bottom):&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// Hook in
add_filter( &#38;#39;woocommerce_checkout_fields&#38;#39; , &#38;#39;custom_override_checkout_fields&#38;#39; );
add_filter( &#38;#39;woocommerce_billing_fields&#38;#39; , &#38;#39;custom_override_billing_fields&#38;#39; );

function custom_override_checkout_fields( $fields ) {
     $fields[&#38;#39;order&#38;#39;][&#38;#39;order_comments&#38;#39;][&#38;#39;placeholder&#38;#39;] = &#38;#39;My new placeholder&#38;#39;;
     $fields[&#38;#39;order&#38;#39;][&#38;#39;order_comments&#38;#39;][&#38;#39;label&#38;#39;] = &#38;#39;My new label&#38;#39;;
     return $fields;
}

// Our hooked in function - $fields is passed via the filter!
function custom_override_billing_fields( $fields ) {
     $fields[&#38;#39;order&#38;#39;][&#38;#39;order_comments&#38;#39;][&#38;#39;placeholder&#38;#39;] = &#38;#39;My new placeholder&#38;#39;;
     $fields[&#38;#39;order&#38;#39;][&#38;#39;order_comments&#38;#39;][&#38;#39;label&#38;#39;] = &#38;#39;My new label&#38;#39;;
     return $fields;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and replace &#34;My new placeholder&#34; (without &#34;&#34;) and &#34;My new label&#34; (without &#34;&#34;) with your custom text/message.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>minnoe on "Another Cart Question"</title>
			<link>http://www.kriesi.at/support/topic/another-cart-question#post-71771</link>
			<pubDate>Sun, 19 Aug 2012 17:06:07 +0000</pubDate>
			<dc:creator>minnoe</dc:creator>
			<guid isPermaLink="false">71771@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Dear Abundance Support,&#60;br /&#62;
On the checkout page is there a way that I can change the &#34;Order Notes&#34; title to my own title which I would ideally like to say &#34;Delivery Date and Message&#34;.&#60;br /&#62;
Thanks,&#60;br /&#62;
Minnoe
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
