Need help here please. I am trying to hide the 'add to cart' woocommerce button when a user selects a specific item in a dropdown list. I have tried multiple JQuery snippets in both functions.php and through 3rd party plugins but am still struggling to get it to work.
In Functions.php theme file
function load_scripts() {
?>
<script type="text/javascript">
$(document).ready(function(){
$(document.getElementsByName("select-1574795073993")).change(function(){
$( "select option:selected").each(function(){
if($(this).attr("value")=="International"){
$(".single_add_to_cart_button").hide();
}
});
}).change();
});
</script>
<?php
}
add_action('wp_enqueue_scripts', 'load_scripts');
Please can someone assist with simple steps to 1) provide correct code, and 2) insert in the woocommerce hosted plarform.
Much appreciated!