Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1278808

    Andrei
    Participant

    Hi,

    I would like to change the alert “Please select some product options before adding this product to your cart” from the product page into a custom text like “Please select size”.

    My website is https://sinestezic.com

    Thank you,
    Andrei

    #1279060

    Nabeel A
    Moderator

    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!

    #1279763

    Andrei
    Participant

    Thank you very much, it works! 🙂

    #1279769

    Thai
    Moderator

    Glad it worked 😉

    If you need anything else please let us know.