Code-Snippets-Functions/Execute a function on a child site/AffiliateWP/store-credit-prevent-individual-use-only.txt
2020-07-30 15:26:44 -06:00

5 lines
248 B
Text

function affwp_custom_store_credit_prevent_individual_use_only( $data ) {
$data['individual_use'] = 'no';
return $data;
}
add_filter( 'affwp_store_credit_woocommerce_coupon_data', 'affwp_custom_store_credit_prevent_individual_use_only', 10, 2 );