Skip to content

Instantly share code, notes, and snippets.

@marcusig
Created September 22, 2021 13:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marcusig/b39f09522be5035f161d166efe96cbe1 to your computer and use it in GitHub Desktop.
Save marcusig/b39f09522be5035f161d166efe96cbe1 to your computer and use it in GitHub Desktop.
Change the Add to cart label in the configurator
<?php
add_filter( 'mkl_pc/add_to_cart_button/default_label', function( $original_label ) {
return 'Continue to payment';
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment