woocommerce_hpos_sync_ignored_order_props

woocommerce_hpos_sync_ignored_order_props

Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.9.2.3

apply_filters('woocommerce_hpos_sync_ignored_order_props') is found 1 times:

  • /src/Internal/DataStores/Orders/DataSynchronizer.php line 350
    		 *
    		 * @param string[] List of order properties or meta keys.
    		 * @since 8.6.0
    		 */
    		$ignored_props = apply_filters( 'woocommerce_hpos_sync_ignored_order_props', array() );
    		$ignored_props = array_filter( array_map( 'trim', array_filter( $ignored_props, 'is_string' ) ) );
    
    		return array_merge(
    			$ignored_props,
    			array(
    				'_paid_date', // This has been deprecated and replaced by '_date_paid' in the CPT datastore.