• Hey team,

    Short question here, how do I change the Notice Text after adding ticket to cart?
    For instance, I get ‘Your cart is updated. Go to cart’ every time when someone add a ticket to cart. Can I change the notice to something else, if so how?
    Thank you so much in advance!

Viewing 1 replies (of 1 total)
  • Plugin Author Joe Dolson

    (@joedolson)

    You can change this using the filter ‘mt_ajax_updated_success’, e.g.

    
    function my_custom_message( $text, $url ) {
          return "<a href='$url'>Go to your shopping cart!</a>";
    }
    add_filter( 'mt_ajax_updated_success', 'my_custom_message', 10, 2 );
    
Viewing 1 replies (of 1 total)
  • The topic ‘“Add to cart’ Notice Text Change’ is closed to new replies.