Currently you have it set in both extensions so that when more than one product is selected, it appends a ‘x 2’ or whatever amount is added to the end of the chosen product. Without the ‘x 1’ by products with only one amount selected it looks very inconsistent.
For products where you are only ever going to have one of each in every choice made this would be fine, but that seems not a use scenario that would be most common. Being able to see the ‘x 1’ would reduce any confusion that might occur.
Yes, it’s assuming people are stupid simple… But it’s often the case.
Closed
Last updated: April 20, 2017
Log in to comment on this feature request.
Hey there,
Thank you for getting in touch!
For Product Bundles, the quantity of bundled items shows up next to the title only when it is higher than 1. To always display it, even when it is 1, you may use the following snippet:
add_filter( ‘woocommerce_bundle_front_end_params’, ‘wc_pb_display_qty_in_bundled_titles’ );
function wc_pb_display_qty_in_bundled_titles( $params ) {
$params[ ‘force_selection_qty’ ] = ‘yes’;
return $params;
}
To install PHP snippets like the above, I recommend using the Code Snippets plugin: https://wordpress.org/plugins/code-snippets/.