Mailchimp Banner Promo Product Page | Q3 2024

added by Mahrie for July $1 promo - product page specific link to Mailchimp pricing

Klarna Payments Q3 2024 banner

Added by Russell Langley in Partner Marketing

Product Icon

Product Bundles for WooCommerce

by  Woo
Offer personalized product bundles, bulk discount packages, and assembled products.

In both Bundles and Composites, allow turning on ‘x 1’ for products not bought in multiples

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.

Author

Current Status

Closed

Last updated: April 20, 2017

1 comment

Log in to comment on this feature request.

  1. jaskyt8 says:
    Product Developer July 5, 2024 10:56 am

    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/.