<?xml version="1.0" encoding="UTF-8"?>
	<rss version="2.0"
		xmlns:content="http://purl.org/rss/1.0/modules/content/"
		xmlns:wfw="http://wellformedweb.org/CommentAPI/"
		xmlns:dc="http://purl.org/dc/elements/1.1/"
		xmlns:atom="http://www.w3.org/2005/Atom"

			>

	<channel>

		<title>&#039;If you have shopped with us before&#039; text change via child theme&#039;s function.php &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/if-you-have-shopped-with-us-before-text-change-via-child-themes-function-php/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/if-you-have-shopped-with-us-before-text-change-via-child-themes-function-php/feed/</link>
		<description></description>
		<lastBuildDate>Sat, 11 Oct 2025 23:41:26 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.14</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/if-you-have-shopped-with-us-before-text-change-via-child-themes-function-php/#post-328145</guid>
					<title><![CDATA[&#039;If you have shopped with us before&#039; text change via child theme&#039;s function.php]]></title>
					<link>https://theme.co/archive/forums/topic/if-you-have-shopped-with-us-before-text-change-via-child-themes-function-php/#post-328145</link>
					<pubDate>Mon, 13 Jul 2015 02:28:08 +0000</pubDate>
					<dc:creator>NightFox</dc:creator>

					<description>
						<![CDATA[
						<p>Trying to edit this text in checkout page:<br />
&#8220;If you have shopped with us before, please enter your details in the boxes below. If you are a new customer please proceed to the Billing &amp; Shipping section.<br />
&#8221; </p>
<p>Are you able to please tell me how to apply this text to the child theme&#8217;s function.php so that we are not limited to the hardcoded WC edit version? I&#8217;ve been using this code in the child theme&#8217;s function php doc, but can&#8217;t get it to work on front end, keep getting an error.</p>
<p>I&#8217;ve been pasting exactly as follows into the functions.php doc</p>
<p>&lt;?php<br />
/**<br />
 * Checkout login form<br />
 *<br />
 * @author 		WooThemes<br />
 * @package 	WooCommerce/Templates<br />
 * @version     2.0.0<br />
 */<br />
if ( ! defined( &#8216;ABSPATH&#8217; ) ) {<br />
	exit; // Exit if accessed directly<br />
}<br />
if ( is_user_logged_in() || &#8216;no&#8217; === get_option( &#8216;woocommerce_enable_checkout_login_reminder&#8217; ) ) {<br />
	return;<br />
}<br />
$info_message  = apply_filters( &#8216;woocommerce_checkout_login_message&#8217;, __( &#8216;Returning customer?&#8217;, &#8216;woocommerce&#8217; ) );<br />
$info_message .= &#8216; <a href="#" rel="nofollow">&#8216; . __( &#8216;Click here to login&#8217;, &#8216;woocommerce&#8217; ) . &#8216;</a>&#8216;;<br />
wc_print_notice( $info_message, &#8216;notice&#8217; );<br />
?&gt;</p>
<p>&lt;?php<br />
	woocommerce_login_form(<br />
		array(<br />
			&#8216;message&#8217;  =&gt; __( &#8216;If you have shopped with us before, please enter your details in the boxes below. If you are a new customer please proceed to the Billing &amp; Shipping section.&#8217;, &#8216;woocommerce&#8217; ),<br />
			&#8216;redirect&#8217; =&gt; wc_get_page_permalink( &#8216;checkout&#8217; ),<br />
			&#8216;hidden&#8217;   =&gt; true<br />
		)<br />
	);<br />
?&gt;</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/if-you-have-shopped-with-us-before-text-change-via-child-themes-function-php/#post-328156</guid>
					<title><![CDATA[Reply To: &#039;If you have shopped with us before&#039; text change via child theme&#039;s function.php]]></title>
					<link>https://theme.co/archive/forums/topic/if-you-have-shopped-with-us-before-text-change-via-child-themes-function-php/#post-328156</link>
					<pubDate>Mon, 13 Jul 2015 02:57:53 +0000</pubDate>
					<dc:creator>Lely</dc:creator>

					<description>
						<![CDATA[
						<p>Hey there,</p>
<p>Thanks for writing in! Regretfully this isn&#8217;t a feature offered by X. It could be possible with custom development, but this would be outside the scope of support we can offer. As stated on the upper right side of this page we cannot provide support for 3rd party plugins or scripts. You may wish to consult a developer to assist you with this. X is quite extensible with child themes, so there are plenty of possibilities. Thanks for understanding. Take care!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/if-you-have-shopped-with-us-before-text-change-via-child-themes-function-php/#post-328164</guid>
					<title><![CDATA[Reply To: &#039;If you have shopped with us before&#039; text change via child theme&#039;s function.php]]></title>
					<link>https://theme.co/archive/forums/topic/if-you-have-shopped-with-us-before-text-change-via-child-themes-function-php/#post-328164</link>
					<pubDate>Mon, 13 Jul 2015 03:43:43 +0000</pubDate>
					<dc:creator>NightFox</dc:creator>

					<description>
						<![CDATA[
						<p>Sure, got it, understand it&#8217;s a Woocommerce thing, wldnt expect 3rd party support from you.</p>
<p>It&#8217;s not an issue to manage this via the usual standard WC php doc edits &#8211; that works great. I&#8217;ve simply not been able to make it work via the child theme&#8217;s function.php document, from the theme.</p>
<p>Is it that the child theme is unable to do it? Can you please confirm? If this is the case we&#8217;ll know to manage via the WC docs.</p>
<p>Thx for your confirm.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/if-you-have-shopped-with-us-before-text-change-via-child-themes-function-php/#post-328166</guid>
					<title><![CDATA[Reply To: &#039;If you have shopped with us before&#039; text change via child theme&#039;s function.php]]></title>
					<link>https://theme.co/archive/forums/topic/if-you-have-shopped-with-us-before-text-change-via-child-themes-function-php/#post-328166</link>
					<pubDate>Mon, 13 Jul 2015 03:54:46 +0000</pubDate>
					<dc:creator>Rue Nel</dc:creator>

					<description>
						<![CDATA[
						<p>Hello There,</p>
<p>Please try to create a woocommerce folder in your child theme and place your customized woocommerce templates there. </p>
<p>For more details in override the woocommerce templates, please check it out here:<br />
<a href="http://docs.woothemes.com/document/template-structure/" rel="nofollow">http://docs.woothemes.com/document/template-structure/</a></p>
<p>Let us know if this has been helpful to you.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/if-you-have-shopped-with-us-before-text-change-via-child-themes-function-php/#post-328187</guid>
					<title><![CDATA[Reply To: &#039;If you have shopped with us before&#039; text change via child theme&#039;s function.php]]></title>
					<link>https://theme.co/archive/forums/topic/if-you-have-shopped-with-us-before-text-change-via-child-themes-function-php/#post-328187</link>
					<pubDate>Mon, 13 Jul 2015 04:22:35 +0000</pubDate>
					<dc:creator>NightFox</dc:creator>

					<description>
						<![CDATA[
						<p>Thanks so much, just what I needed. All good, all perfect, appreciate it.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/if-you-have-shopped-with-us-before-text-change-via-child-themes-function-php/#post-328197</guid>
					<title><![CDATA[Reply To: &#039;If you have shopped with us before&#039; text change via child theme&#039;s function.php]]></title>
					<link>https://theme.co/archive/forums/topic/if-you-have-shopped-with-us-before-text-change-via-child-themes-function-php/#post-328197</link>
					<pubDate>Mon, 13 Jul 2015 04:31:36 +0000</pubDate>
					<dc:creator>Lely</dc:creator>

					<description>
						<![CDATA[
						<p>You&#8217;re welcome.</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

