This topic has 10 replies, 2 voices, and was last updated 3 weeks ago ago by Luca Rossi
Please see the attachd imagem while adding product to the cart, Multiplese messages are coming, we want to remove that
Dear @JiPanditJI,
We hope this message finds you well.
We would like to inform you that we have updated the Cart element, and the issue with multiple messages has now been resolved.
Could you kindly review the changes at your convenience and confirm if everything is functioning as expected?
Thank you for your time and assistance.
Best regards,
8Theme Team.
I am still getting the messages, please chek and advise
Dear @JiPanditJI,
We hope this message finds you well.
Kindly navigate to the WooCommerce Shipping settings and uncheck the following option:
[Link: https://prnt.sc/XSy36FGFExjg%5D
We hope this resolves the issue. Should you require any further assistance, please do not hesitate to reach out.
Best regards,
8Theme Team
the screenshot is not visible, and we are still getting the messages , please see the screenshot attached.
please advise how to customise these messages
Hi @JiPanditJI,
Here is the correct link: https://prnt.sc/XSy36FGFExjg.
the screenshot is not visible, and we are still getting the messages , please see the screenshot attached.
please advise how to customise these messages
Please switch the default theme(like Storefront,…) if you think, they’re an issue.
As your screenshot, the message appears after you apply a coupon code.
Best regards,
8Theme Team
Why to switch to default theme when I am building the site on Xstore ?
I did not get you.
No the message is coming after adding the product to the cart
Hi @JiPanditJI,
We meant switching to default theme for testing the multiple messages error. To make sure this issue is coming from XStore theme or not.
And please tell us how can we reproduce this issue. This is how the cart looks after we added a product to cart: https://www.awesomescreenshot.com/video/33199729?key=cbf6d3e3aaadb0276870503dd5c8688b
Thank you!
There was a message coming cart updated, how to customize that message with our own color and text. Also while adding the product with some offer and discount, discount message and notification also comes up, we want to customize that as well
Hi @JiPanditJI,
Please try adding this code under functions.php file locates in your child theme:
add_filter('gettext', 'wpse_124400_woomessages', 10, 3);
/**
* change some WooCommerce labels
* @param string $translation
* @param string $text
* @param string $domain
* @return string
*/
function wpse_124400_woomessages($translation, $text, $domain) {
if ($domain == 'woocommerce') {
if ($text == 'Cart updated.') {
$translation = 'Basket updated.';
}
}
return $translation;
}
To change the color, please add this custom CSS code under XStore > Theme Options > Theme Custom CSS > Global CSS:
.woocommerce-message {
background-color: red;
}
Hope it helps!
You must be logged in to reply to this topic.Log in/Sign up