Advertisement
digital-workshop

Change Text on Button

Sep 11th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.36 KB | None | 0 0
  1. /* Change Text on Button */
  2. add_filter( 'add_to_cart_text', 'woo_custom_single_add_to_cart_text' );   // < 2.1
  3. add_filter( 'woocommerce_product_single_add_to_cart_text', 'woo_custom_single_add_to_cart_text' );  // 2.1 +
  4.  
  5. function woo_custom_single_add_to_cart_text() {
  6.  
  7.     return __( 'Kurs buchen', 'woocommerce' );
  8.  
  9. }
  10. /* Change Text on Button ENDE */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement