Skip to content

Instantly share code, notes, and snippets.

View tevyaw's full-sized avatar

Tevya Washburn tevyaw

View GitHub Profile
@ChromeOrange
ChromeOrange / functions.php
Created July 29, 2012 18:37
Allow certain products to be sold one per order only.
<?php
add_filter( 'woocommerce_is_sold_individually', 'cj_woocommerce_is_sold_individually', 10, 2 );
function cj_woocommerce_is_sold_individually( $value, $product ) {
$isi = get_post_meta( $product->id, '_custom_sell_individually', TRUE );
if ( $isi == 'individual' ) :
$return = true;
endif;