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
Leave a Reply