Skip to content

Instantly share code, notes, and snippets.

@devellopah
Forked from kontikidigital/functions.php
Created February 25, 2018 16:09
Show Gist options
  • Save devellopah/0207a794a07d57de892f0d81413d56bf to your computer and use it in GitHub Desktop.
Save devellopah/0207a794a07d57de892f0d81413d56bf to your computer and use it in GitHub Desktop.
WooCommerce: Change Select Options Button Text for variable products
add_filter( 'woocommerce_product_add_to_cart_text' , 'custom_woocommerce_product_add_to_cart_text' );
/**
* custom_woocommerce_template_loop_add_to_cart
*/
function custom_woocommerce_product_add_to_cart_text() {
global $product;
$product_type = $product->product_type;
switch ( $product_type ) {
case 'external':
return __( 'Buy product', 'woocommerce' );
break;
case 'grouped':
return __( 'View products', 'woocommerce' );
break;
case 'simple':
return __( 'Add to cart', 'woocommerce' );
break;
case 'variable':
return __( 'Select options', 'woocommerce' );
break;
default:
return __( 'Read more', 'woocommerce' );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment