We and our partners process your personal data (such as browsing data, IP Addresses, cookie information, and other unique identifiers) based on your consent and/or our legitimate interest to optimize our website, marketing activities, and your user experience.
Hey there,
Thank you for getting in touch!
To allow users select only 1 item from the Bundle-Sells section, I recommend using the following snippet:
add_filter( ‘wc_pb_bundle_sells_dummy_bundle’, ‘wc_bundle_sells_limit_selection’ );
function wc_bundle_sells_limit_selection( $bundle ) {
$bundle->set_max_bundle_size( 1 );
return $bundle;
}
To install snippets like this one, I suggest using a plugin like Code Snippets: https://wordpress.org/plugins/code-snippets/.