Comments 6Samuel started the conversationDecember 18, 2023 at 3:27pmHi!Is there a way to display the total number of items selected right next/before the bundle price in the single product page?Thx! 767Janilyn repliedDecember 19, 2023 at 3:30amHi Samuel, Thank you for contacting WPClever Support Forum. We’ve received your ticket and assigned one of our developers to help you with that. He’ll be looking into your question and responding with specific instructions as soon as possible. Please stay patient as we're having very heavy workloads, it might take some time for our developers to reach back. Best regards.Janilyn T. - WPClever Support Agent 1,225Dustin repliedDecember 20, 2023 at 2:36amHi Samuel,Please add the below custom code (How to add custom code?) add_action( 'wp_footer', function () { ?> <script type="text/javascript"> (function($) { $(document).on('woosb_save_ids', function(e, ids) { var count = 0; var count_txt = ''; if (ids.length) { $.each(ids, function(index, value) { var value_arr = value.split('/'); count += parseInt(value_arr[1]); }); } if (count == 0) { count_txt = '<div class="woosb_count_txt">You have selected 0 items</div>'; } else if (count == 1) { count_txt = '<div class="woosb_count_txt">You have selected 1 item</div>'; } else { count_txt = '<div class="woosb_count_txt">You have selected ' + count + ' items</div>'; } if ($('.woosb_count_txt').length) { $('.woosb_count_txt').html(count_txt); } else { $(count_txt).insertAfter('.woosb-products'); } }); })(jQuery); </script> <?php }, 99 );And the result https://app.screencast.com/rsB16jUOAoKE0Best regards,Dustin 6Samuel repliedDecember 21, 2023 at 4:57pmGreat! Thx! Worked like a charm :)1 Like 1,225Dustin repliedDecember 22, 2023 at 3:53amYou're welcome!If you are satisfied with our plugin and support, please reward it with a full five-star ★★★★★ rating. https://wordpress.org/support/plugin/woo-product-bundle/reviews?rate=5#new-post Thank you in advance! ♥Best regards,Dustin Sign in to reply ...
Hi!
Is there a way to display the total number of items selected right next/before the bundle price in the single product page?
Thx!
Hi Samuel,
Thank you for contacting WPClever Support Forum.
We’ve received your ticket and assigned one of our developers to help you with that.
He’ll be looking into your question and responding with specific instructions as soon as possible.
Please stay patient as we're having very heavy workloads, it might take some time for our developers to reach back.
Best regards.
Janilyn T. - WPClever Support Agent
Hi Samuel,
Please add the below custom code (How to add custom code?)
And the result https://app.screencast.com/rsB16jUOAoKE0
Best regards,
Dustin
Great! Thx! Worked like a charm :)
You're welcome!
If you are satisfied with our plugin and support, please reward it with a full five-star ★★★★★ rating. https://wordpress.org/support/plugin/woo-product-bundle/reviews?rate=5#new-post Thank you in advance! ♥
Best regards,
Dustin