slug !== self::$editing_term->slug ) { global $wpdb; $wpdb->query( $wpdb->prepare( "UPDATE {$wpdb->postmeta} SET meta_value = %s WHERE meta_key = %s AND meta_value = %s;", $edited_term->slug, 'attribute_' . sanitize_title( $taxonomy ), self::$editing_term->slug ) ); } } else { self::$editing_term = null; } } /** * Ensure floats are correctly converted to strings based on PHP locale * * @param null $check * @param int $object_id * @param string $meta_key * @param mixed $meta_value * @param mixed $prev_value * @return null|bool */ public static function update_order_item_metadata( $check, $object_id, $meta_key, $meta_value, $prev_value ) { if ( ! empty( $meta_value ) && is_float( $meta_value ) ) { // Convert float to string $meta_value = wc_float_to_string( $meta_value ); // Update meta value with new string update_metadata( 'order_item', $object_id, $meta_key, $meta_value, $prev_value ); // Return return true; } return $check; } /** * Ensure floats are correctly converted to strings based on PHP locale * * @param null $check * @param int $object_id * @param string $meta_key * @param mixed $meta_value * @param mixed $prev_value * @return null|bool */ public static function update_post_metadata( $check, $object_id, $meta_key, $meta_value, $prev_value ) { if ( ! empty( $meta_value ) && is_float( $meta_value ) && in_array( get_post_type( $object_id ), array( 'shop_order', 'shop_coupon', 'product', 'product_variation' ) ) ) { // Convert float to string $meta_value = wc_float_to_string( $meta_value ); // Update meta value with new string update_metadata( 'post', $object_id, $meta_key, $meta_value, $prev_value ); // Return return true; } return $check; } } WC_Post_Data::init();