woocommerce_bulk_edit_save_price_product_types

woocommerce_bulk_edit_save_price_product_types

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

See hook in core

Displaying hooks found in version: woocommerce.8.7.0

apply_filters('woocommerce_bulk_edit_save_price_product_types') is found 1 times:

  • /includes/admin/class-wc-admin-post-types.php line 548
    			}
    		}
    
    		// Handle price - remove dates and set to lowest.
    		$change_price_product_types    = apply_filters( 'woocommerce_bulk_edit_save_price_product_types', array( 'simple', 'external' ) );
    		$can_product_type_change_price = false;
    		foreach ( $change_price_product_types as $product_type ) {
    			if ( $product->is_type( $product_type ) ) {
    				$can_product_type_change_price = true;
    				break;
    			}