Okay
  Public Ticket #3451107
Cart Name
Closed

Comments

  •  4
    Frédéric DEPUIS started the conversation

    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.

    Attached files:  citation_3.PNG
      citation_2.PNG
      citation_1.PNG

  •  2,218
    WebWizards replied

    Hi,

    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.