Home Woocommerce Hooks Change alert message text for variation in Woocommerce

Change alert message text for variation in Woocommerce

by therichpost
8 comments
woocommerce

Hello, welcome to therichpost.com. In this post, I will tell you, How to Change alert message text for variation in Woocommerce? WordPress is the best cms and Woocommerce is the best Ecommerce plugin. WordPress hooks(add_action, add_filter) give us the power to edit or change the code without interruption into the files and this is the best thing about wordpress.

Here is the working code to Change alert message text for variation in Woocommerce and you need to add this into your theme’s functions.php file:
add_filter( 'gettext', 'customizing_variable_product_message', 97, 3 );
function customizing_variable_product_message( $translated_text, $untranslated_text, $domain )
{
    if ($untranslated_text == 'Please select some product options before adding this product to your cart.') {
        $translated_text = __( 'Here goes your custom text', $domain );
    }
    return $translated_text;
}

  There are so many codes in woocommerce and i will let you know all. Please do comment if you any query     related  to   this post. Thank you. Therichpost.com

You may also like

8 comments

Hanzla April 2, 2019 - 8:38 am

hello. nice to see that. I was trying to display this error message different on different products according to the options. kindly can you please tell me how?

Reply
Ajay Malhotra April 3, 2019 - 3:57 pm

What kind of options? can you please show the code?

Reply
rakshit jain April 27, 2020 - 6:27 pm

worked like a charm!! thank you. Now can we also change that default browser pop up and can i design it on my own via elementor?

Reply
Ajay Malhotra April 27, 2020 - 6:31 pm

Yes we can..

Reply
Cynthia July 20, 2022 - 2:30 pm

HI Ajay,

Thanks for posting that code above, I wanted to change that as well.

Question:
Do you have code to change the WooCommerce Checkout required fields error message that says:

“Required form fields are not filled or invalid”?

I would like to add some additional text in there to tell visitors: “Did you check the box to agree to our terms and conditions?”

I feel that a lot of people may miss seeing that little check box down at the bottom and it’s probably good to point that out for them. 🙂

Many thanks!

Reply
therichpost July 22, 2022 - 6:11 pm

Yes I can do.

Reply
Abdul Mateen April 15, 2023 - 7:36 am

Hello Ajay,
I have added your code in the bottom of my theme’s functions.php file but it not work for me could you please help. I’ve already tried to chenge alert message from 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;
}
});
});

but still not work for me. I wanted to change my alert message. I really appreciate your help.

Thank You

Reply
therichpost April 16, 2023 - 7:11 am

Okay thanks for posting this. I will check and update.

Reply

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.