Categories

Saturday, April 20, 2024
#919814419350 therichposts@gmail.com
Woocommerce Hooks

Change alert message text for variation in Woocommerce

How to add download pdf link in woocommerce single product page?

Change alert message text for variation in 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

therichpost
the authortherichpost
Hello to all. Welcome to therichpost.com. Myself Ajay Malhotra and I am freelance full stack developer. I love coding. I know WordPress, Core php, Angularjs, Angular 14, Angular 15, Angular 16, Angular 17, Bootstrap 5, Nodejs, Laravel, Codeigniter, Shopify, Squarespace, jQuery, Google Map Api, Vuejs, Reactjs, Big commerce etc.

8 Comments

  • 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?

  • 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!

  • 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

Leave a Reply

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