Support grouped layout of sub mode plugin

This commit is contained in:
Alex P 2022-12-21 17:00:38 +02:00
parent 4bd39c9f95
commit d5f54abd94
No known key found for this signature in database
GPG key ID: 54487A734A204D71

View file

@ -90,7 +90,8 @@ class SingleProductBootstap {
isSubscriptionMode() {
// Check "All products for subscriptions" plugin.
return document.querySelector('.wcsatt-options-product .subscription-option input[type="radio"]:checked') !== null;
return document.querySelector('.wcsatt-options-product:not(.wcsatt-options-product--hidden) .subscription-option input[type="radio"]:checked') !== null
|| document.querySelector('.wcsatt-options-prompt-label-subscription input[type="radio"]:checked') !== null; // grouped
}
render() {