<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>free shipping Archives - CNERIS</title>
	<atom:link href="https://cneris.com/en/tag/free-shipping/feed/" rel="self" type="application/rss+xml" />
	<link>https://cneris.com/en/tag/free-shipping/</link>
	<description></description>
	<lastBuildDate>Sun, 17 Nov 2024 22:22:32 +0000</lastBuildDate>
	<language>en-GB</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.1</generator>
	<item>
		<title>The option &#8220;Hide other shipping methods when free shipping is available&#8221; is not displayed</title>
		<link>https://cneris.com/en/the-option-hide-other-shipping-methods-when-free-shipping-is-available-is-not-displayed/</link>
					<comments>https://cneris.com/en/the-option-hide-other-shipping-methods-when-free-shipping-is-available-is-not-displayed/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Sun, 17 Nov 2024 22:22:01 +0000</pubDate>
				<category><![CDATA[System Administration]]></category>
		<category><![CDATA[Web Applications]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[free shipping]]></category>
		<category><![CDATA[shipping methods]]></category>
		<category><![CDATA[woocommerce]]></category>
		<guid isPermaLink="false">https://cneris.com/?p=2706</guid>

					<description><![CDATA[<p>If the option "Hide other shipping methods when free shipping is available" is not displayed, you can achieve this behavior manually or by adding custom code. Option 1: Use predefined rules Go to WooCommerce &gt; Settings &gt; Shipping and select your shipping zone. Configure: A Free Shipping method with a minimum order of 60 euros. [...]</p>
<p>The post <a href="https://cneris.com/en/the-option-hide-other-shipping-methods-when-free-shipping-is-available-is-not-displayed/">The option &#8220;Hide other shipping methods when free shipping is available&#8221; is not displayed</a> appeared first on <a href="https://cneris.com/en">CNERIS</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>If the option <strong>&#8220;Hide other shipping methods when free shipping is available&#8221;</strong> is not displayed, you can achieve this behavior manually or by adding custom code.</p>
<h4>Option 1: Use predefined rules</h4>
<ol>
<li>Go to <strong>WooCommerce &gt; Settings &gt; Shipping</strong> and select your shipping zone.</li>
<li>Configure:
<ul>
<li>A <strong>Free Shipping</strong> method with a minimum order of 60 euros.</li>
<li>A <strong>Flat Rate Shipping</strong> method with a base cost of 5 euros.</li>
</ul>
</li>
<li>While WooCommerce may not automatically hide the flat rate, customers will be able to choose free shipping when eligible.</li>
</ol>
<h4>Option 2: Use custom code</h4>
<p>Add this code to your <code>functions.php</code> file to automatically hide other shipping methods when free shipping is available:</p>
<div class="contain-inline-size rounded-md border-[0.5px] border-token-border-medium relative bg-token-sidebar-surface-primary dark:bg-gray-950">
<div class="overflow-y-auto p-4" dir="ltr"><code class="!whitespace-pre hljs language-php">add_filter( 'woocommerce_package_rates', 'hide_shipping_methods_when_free_is_available', 100 );<br />
function hide_shipping_methods_when_free_is_available( $rates ) {<br />
$free = array();<br />
foreach ( $rates as $rate_id =&gt; $rate ) {<br />
if ( 'free_shipping' === $rate-&gt;method_id ) {<br />
$free[ $rate_id ] = $rate;<br />
break;<br />
}<br />
}<br />
return ! empty( $free ) ? $free : $rates;<br />
}<br />
</code></div>
</div>
<h4>Final Step</h4>
<ul>
<li>Save your changes and refresh the checkout page to test</li>
</ul>
<p>The post <a href="https://cneris.com/en/the-option-hide-other-shipping-methods-when-free-shipping-is-available-is-not-displayed/">The option &#8220;Hide other shipping methods when free shipping is available&#8221; is not displayed</a> appeared first on <a href="https://cneris.com/en">CNERIS</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://cneris.com/en/the-option-hide-other-shipping-methods-when-free-shipping-is-available-is-not-displayed/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
