WC_Product_Grouped_Data_Store_CPT::handle_updated_props( WC_Product $product )
Handle updated meta props after updating meta data.
Description Description
Parameters Parameters
- $product
-
(Required) Product object.
Source Source
File: includes/data-stores/class-wc-product-grouped-data-store-cpt.php
protected function handle_updated_props( &$product ) {
if ( in_array( 'children', $this->updated_props, true ) ) {
$this->update_prices_from_children( $product );
}
parent::handle_updated_props( $product );
}
Changelog Changelog
| Version | Description |
|---|---|
| 3.0.0 | Introduced. |