Hello @bullionmart
Thank you for choosing our plugin.
We apologize for the inconvenience.
You can try to add the below codes to your child theme functions.php file and try it.
function asnp_wepb_cart_item_visible( $visible, $cart_item ) {
if ( AsanaPlugins\WooCommerce\ProductBundles\is_cart_item_bundle( $cart_item ) ) {
return false;
}
return $visible;
}
add_filter( 'woocommerce_order_item_visible', 'asnp_wepb_cart_item_visible', 10, 2 );
// The below filters hide bundle items inside the cart and checkout so if you don't want them just ignore them.
add_filter( 'woocommerce_cart_item_visible', 'asnp_wepb_cart_item_visible', 10, 2 );
add_filter( 'woocommerce_widget_cart_item_visible', 'asnp_wepb_cart_item_visible', 10, 2 );
add_filter( 'woocommerce_checkout_cart_item_visible', 'asnp_wepb_cart_item_visible', 10, 2 );
Just please note that the last three filters, hides bundle product in the cart and checkout too. It doesn’t work with cart and checkout blocks.
In case the above codes doesn’t work for the email, unfortunately there is not any option to hide it.
The plugin is not compatible with multi currency plugins yet, but we will consider to add a compatiblity in the future versions.
Please ask your different questions in a new topic instead of asking all of them in one topic.
I hope it helps.
Best Regards