Skip to content

Instantly share code, notes, and snippets.

@orenshim
Created March 8, 2019 09: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 orenshim/c4c133f360fbfac17dd3a3da28a8cf78 to your computer and use it in GitHub Desktop.
Save orenshim/c4c133f360fbfac17dd3a3da28a8cf78 to your computer and use it in GitHub Desktop.
add_filter( 'woocommerce_product_single_add_to_cart_text', 'cw_btntext_cart' );
add_filter( 'woocommerce_product_add_to_cart_text', 'cw_btntext_cart' );
function cw_btntext_cart() {
return __( 'Go To Checkout', 'woocommerce' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment