<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
	<channel>
				<title><![CDATA[우커머스 장바구니 페이지 편집]]></title>
		<link>https://www.cosmosfarm.com/threads/rss/document/57136</link>
		<description><![CDATA[<p>우커머스 장바구니 페이지</p>

<p>텍스트를 편집하고싶습니다 </p>

<p>장바구니 합계 -&gt; 합계로 </p>

<p>고치는 방법이 있을까요</p>]]></description>
		<copyright>Copyright 2026, 코스모스팜</copyright>
				<item>
			<title><![CDATA[잘 적용되었습니다 감사합니다~]]></title>
			<link>https://www.cosmosfarm.com/threads/document/57146</link>
			<description><![CDATA[<p>잘 적용되었습니다 감사합니다~</p>]]></description>
			<author>repeat</author>
			<pubDate>Wed, 29 Dec 2021 01:27:27 +0000</pubDate>
			<category>우커머스(WooCommerce)</category>
		</item>
				<item>
			<title><![CDATA[안녕하세요~^^

우커머스 장바구니 페이지에서 &quot;장바구니 합계&quot; 문구를

&quot;합계&quot;로 ...]]></title>
			<link>https://www.cosmosfarm.com/threads/document/57142</link>
			<description><![CDATA[<p>안녕하세요~^^</p>

<p>우커머스 장바구니 페이지에서 "장바구니 합계" 문구를</p>

<p>"합계"로 교체하시려면</p>

<p>아래의 코드를 추가해보세요.</p>

<pre>
<code class="language-php">add_action('woocommerce_before_cart_totals', 'woocommerce_before_cart_totals_20211229');
function woocommerce_before_cart_totals_20211229(){
	add_filter('gettext', 'gettext_20211229', 10, 3);
}

function gettext_20211229($translated_text, $text, $domain){
	if($domain == 'woocommerce' &amp;&amp; $translated_text == '장바구니 합계'){
		$translated_text = '합계';
	}

	return $translated_text;
}</code></pre>

<p>테마의 functions.php 파일에 코드를 추가하거나 <a href="https://ko.wordpress.org/plugins/code-snippets/" target="_blank">Code Snippets</a> 플러그인을 사용해서 코드를 추가할 수 있습니다.</p>

<p>고맙습니다.</p>]]></description>
			<author>스레드봇</author>
			<pubDate>Tue, 28 Dec 2021 23:56:38 +0000</pubDate>
			<category>우커머스(WooCommerce)</category>
		</item>
			</channel>
</rss>