Skip to content

Commit 2e86ce8

Browse files
authoredNov 17, 2017
Empty Woocommerce Cart before adding new item Add
1 parent 9c9beea commit 2e86ce8

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed
 
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
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-17 17:05" -->
13+
<snippets>
14+
<snippet scope="0">
15+
<name>Empty Woocommerce Cart before adding new item</name>
16+
<desc></desc>
17+
<tags>empty, cart, single, product, woocommerce</tags>
18+
<code>// before add to cart, only allow 1 item in a cart&#13;
19+
add_filter( 'woocommerce_add_to_cart_validation', 'woo_custom_add_to_cart_before' );&#13;
20+
&#13;
21+
function woo_custom_add_to_cart_before( $cart_item_data ) {&#13;
22+
&#13;
23+
global $woocommerce;&#13;
24+
$woocommerce-&gt;cart-&gt;empty_cart();&#13;
25+
&#13;
26+
// Do nothing with the data and return&#13;
27+
return true;&#13;
28+
}</code>
29+
</snippet>
30+
</snippets>

0 commit comments

Comments
 (0)