Comments 4Frédéric DEPUIS started the conversationSeptember 4, 2023 at 2:26pmHello, I've activated this option that allows for "Add to Quote" instead of "Add to Cart," but the cart name changes as well. I would like to replace the text. See the attached image. Thank you. 2,507WebWizards repliedSeptember 5, 2023 at 3:17pmHi,You can change that text by adding this PHP code snippet to your site: add_filter('b2bking_hidden_price_cart_quote', function($val){ return 'New Text'; }, 10, 1); You can change 'New Text' to anything else. Sign in to reply ...
Hello, I've activated this option that allows for "Add to Quote" instead of "Add to Cart," but the cart name changes as well. I would like to replace the text. See the attached image. Thank you.
Hi,
You can change that text by adding this PHP code snippet to your site:
You can change 'New Text' to anything else.