Hi everyone.
I use the app Live Product Options and the theme focal. Here I have a radio button with two options, if one of the radio button is checked it should disable the Add to cart button.
I tried it with this snippet. I put it in the theme.js.
$(document).on(‘change’,‘#option_8338950095188_Platzbedarf-1’,function(){
$(‘#AddToCart’).hide();
if($(this).is(‘checked’)){
$(‘#AddToCart’).show();
}
})
Here is the code from the radio buttons that create the app
Ist der Platzbedarf bis zum Mauerwerk ausreichend (Seitlich links, rechts: min. 20mm / Oben: min. 38mm / Unten: min. 50mm)?
trifft zu (Du hast die idealen Vorraussetzungen!) trifft nicht zu ( Bitte kontaktiere uns per Mail)This is the code from the Add to Cart button:
Zum Warenkorb hinzufügenI am looking forward to your replies.
Kind Regards
Kevin