Remove bundle name | WordPress.org

[ad_1]

Also, the price in USD is same as the price in CAD. However, other simple products are showing CAD to USD conversion and vice versa.

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

 

This site will teach you how to build a WordPress website for beginners. We will cover everything from installing WordPress to adding pages, posts, and images to your site. You will learn how to customize your site with themes and plugins, as well as how to market your site online.

Buy WordPress Transfer