mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
5 lines
248 B
Text
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 );
|