Hi there,
Thanks for writing in! Please add the following jQuery script in your Customizer via Appearance > Customize > Custom > Edit Global Javascript
jQuery(document).ready(function($){
$('.single_add_to_cart_button').click(function(e){
if ($('#pa_size').val() == "") {
e.preventDefault();
alert("Please select size");
return false;
}
});
});
Don’t forget to clear your browser’s cache after adding the code. Let us know how this goes!