I noticed in similar publicly available tickets (here and here) that you provided a function for Composite Products and Product Bundles that I feel might be similar to our issue with Grouped Products, but I'm not sure what to put in the
if ( $product->is_type( '????????' ) ) {
Here is an example of the code you provided in the other tickets:
/* WPC Composite Products - Fix for Elementor */
add_action( 'woocommerce_before_add_to_cart_quantity', function () {
global $product;
if ( $product->is_type( 'composite' ) ) {
echo '<div class="e-atc-qty-button-holder">';
}
} );
add_action( 'woocommerce_before_add_to_cart_quantity', function () {
global $product;
if ( $product->is_type( 'woosb' ) ) {
echo '<div class="e-atc-qty-button-holder">';
}
} );
Do you think something like this would work for us as well with Grouped Products?
Thank you so much for any reply you might be able to give!
Hi WPClever team!
Thank you so much for reading these notes!
We are experiencing a broken product layout for WPC Grouped Products on Elementor-designed Single Product templates.
Would you be able to quick check this page (https://livingwaters.com/store/audio/pinnacles-of-preaching-mp3/) and see if you can figure out what might be causing the layout issue for the WPC Grouped Product?
I've attached a screenshot of the layout broken and what the layout for a single product typically looks like.
Also, here is a quick screen recording describing the issue a little bit: WPClever Grouped Products layout broken
I noticed in similar publicly available tickets (here and here) that you provided a function for Composite Products and Product Bundles that I feel might be similar to our issue with Grouped Products, but I'm not sure what to put in the
if ( $product->is_type( '????????' ) ) {
Here is an example of the code you provided in the other tickets:
/* WPC Composite Products - Fix for Elementor */ add_action( 'woocommerce_before_add_to_cart_quantity', function () { global $product; if ( $product->is_type( 'composite' ) ) { echo '<div class="e-atc-qty-button-holder">'; } } );add_action( 'woocommerce_before_add_to_cart_quantity', function () { global $product; if ( $product->is_type( 'woosb' ) ) { echo '<div class="e-atc-qty-button-holder">'; } } );Do you think something like this would work for us as well with Grouped Products?
Thank you so much for any reply you might be able to give!
Thanks, Dustin/WPClever team!
Attached files: screencapture-livingwaters-store-audio-pinnacles-of-preaching-mp3-2026-05-21-18_37_30.png
screencapture-livingwaters-store-books-bibles-the-evidence-study-bible-duotone-2026-05-21-18_38_39.png
Hi Caled,
For WPC Grouped Products, please add the custom code below. (How to add custom code? ↗):
add_action( 'woocommerce_before_add_to_cart_quantity', function () { global $product; if ( $product->is_type( 'woosg' ) ) { echo '<div class="e-atc-qty-button-holder">'; } } );Best regards,
Dustin
This worked!
Thank you so much, Dustin!