mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-03 12:12:25 +08:00
16 lines
385 B
Text
16 lines
385 B
Text
unction affwp_disable_automatic_customer_linking_to_affiliate( $check, $object_id, $meta_key, $meta_value, $unique ) {
|
|
|
|
if ( did_action( 'affwp_post_insert_customer' ) ) {
|
|
|
|
if ( ! is_admin() && 'affiliate_id' == $meta_key ) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return $check;
|
|
|
|
}
|
|
|
|
}
|
|
add_filter( 'add_affwp_customer_metadata', 'affwp_disable_automatic_customer_linking_to_affiliate', 10, 5 );
|