Advertisement
Guest User

Untitled

a guest
Jan 28th, 2020
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. if ( ! function_exists( 'wvs_miuzin_theme_support' ) ) {
  2. function wvs_miuzin_theme_support() {
  3.  
  4. add_filter( 'woo_variation_swatches_archive_add_to_cart_select_options', 'miuzin_custom_cart_button_text');
  5. add_filter( 'woo_variation_swatches_archive_add_to_cart_text', 'miuzin_custom_cart_button_text');
  6.  
  7. }
  8. }
  9. add_action( 'init', 'wvs_miuzin_theme_support', 20 );
  10.  
  11.  
  12. add_filter( 'woocommerce_product_add_to_cart_text', 'miuzin_custom_cart_button_text' );
  13.  
  14. if ( ! function_exists( 'miuzin_custom_cart_button_text' ) ) {
  15. function miuzin_custom_cart_button_text() {
  16. return '';
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement