Skip to content

Commit 8c81cbc

Browse files
authored
Show a notice throughout the store if the cart is empty in WooCommerce Add
1 parent 834982c commit 8c81cbc

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!-- This is a code snippets export file generated by the Code Snippets WordPress plugin. -->
3+
<!-- https://wordpress.org/plugins/code-snippets -->
4+
<!-- To import these snippets a WordPress site follow these steps: -->
5+
<!-- 1. Log in to that site as an administrator. -->
6+
<!-- 2. Install the Code Snippets plugin using the directions provided at the above link. -->
7+
<!-- 3. Go to 'Tools: Import' in the WordPress admin panel. -->
8+
<!-- 4. Click on the "Code Snippets" importer in the list -->
9+
<!-- 5. Upload this file using the form provided on that page. -->
10+
<!-- 6. Code Snippets will then import all of the snippets and associated information contained in this file into your site. -->
11+
<!-- 7. You will then have to visit the 'Snippets: All Snippets' admin menu and activate desired snippets. -->
12+
<!-- generator="Code Snippets/2.9.4" created="2017-11-08 16:15" -->
13+
<snippets>
14+
<snippet scope="2">
15+
<name>Show a notice throughout the store if the cart is empty in WooCommerce</name>
16+
<desc></desc>
17+
<tags>empty, cart, notice</tags>
18+
<code>function wc_empty_cart_notice() {&#13;
19+
&#13;
20+
if ( WC()-&gt;cart-&gt;get_cart_contents_count() == 0 ) {&#13;
21+
wc_print_notice( __( 'Get free shipping if your order is over &amp;#36;60!', 'woocommerce' ), 'notice' );&#13;
22+
// Change notice text as desired&#13;
23+
}&#13;
24+
&#13;
25+
}&#13;
26+
// Add to cart page&#13;
27+
add_action( 'woocommerce_check_cart_items', 'wc_empty_cart_notice' );&#13;
28+
// Add to shop archives &amp; product pages&#13;
29+
add_action( 'woocommerce_before_main_content', 'wc_empty_cart_notice' );</code>
30+
</snippet>
31+
</snippets>

0 commit comments

Comments
 (0)