You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in \WC_Product_Variation_Data_Store_CPT::read_product_data you have 'gallery_image_ids' => array_filter( explode( ',', get_post_meta( $id, '_product_image_gallery', true ) ) ),
However the backwards compatibility code will only return the 1st id due to use of single needs. some sort of flag in the mapping to do an implode for code compatibility (or change that core method).
Possibility of similar things with other meta that store several ids in one key.
The text was updated successfully, but these errors were encountered:
in
\WC_Product_Variation_Data_Store_CPT::read_product_data
you have'gallery_image_ids' => array_filter( explode( ',', get_post_meta( $id, '_product_image_gallery', true ) ) ),
However the backwards compatibility code will only return the 1st id due to use of
single
needs. some sort of flag in the mapping to do an implode for code compatibility (or change that core method).Possibility of similar things with other meta that store several ids in one key.
The text was updated successfully, but these errors were encountered: