wc_product_has_unique_sku

wc_product_has_unique_sku

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.9.8.1

apply_filters('wc_product_has_unique_sku') is found 1 times:

  • /includes/wc-product-functions.php line 748
    745
    746
    747
    748
    749
    750
    751
    752
    753
        $data_store = WC_Data_Store::load( 'product' );
        $sku_found  = $data_store->is_existing_sku( $product_id, $sku );
     
        if ( apply_filters( 'wc_product_has_unique_sku', $sku_found, $product_id, $sku ) ) {
            return false;
        }
     
        return true;
    }