Home › Forums › WooCommerce Personalized Product Options Manager (PPOM) › Issue with bundled Products › Reply To: Issue with bundled Products
September 27, 2018 at 2:12 pm
#9486
Lievelabels.nl
Participant
woocommerce.php
function ppom_woocommerce_add_item_meta($item_meta, $cart_item) {
if( ! isset($cart_item['ppom']['fields']) ) return $item_meta;
if ( class_exists('WC_Bundles') && wc_pb_is_bundled_cart_item( $cart_item )) {
return $item_meta;
}
$ppom_meta = ppom_make_meta_data( $cart_item );
//rest of function
But this is only cosmetic, we should also make sure, its actually not applied to the children as well.
- This reply was modified 6 years, 1 month ago by Lievelabels.nl.