Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mommaroodles/ec3845114101f45f6a22f2391a14823a to your computer and use it in GitHub Desktop.
Save mommaroodles/ec3845114101f45f6a22f2391a14823a to your computer and use it in GitHub Desktop.
change-add-to-cart-text
// Change add to cart text on archives depending on product type
add_filter( 'woocommerce_product_add_to_cart_text' , 'custom_woocommerce_product_add_to_cart_text' );
function custom_woocommerce_product_add_to_cart_text() {
global $product;
$product_type = $product->product_type;
switch ( $product_type ) {
case 'external':
return __( 'Take me to their site!', 'woocommerce' );
break;
case 'grouped':
return __( 'VIEW THE GOOD STUFF', 'woocommerce' );
break;
case 'simple':
return __( 'Add Me', 'woocommerce' );
break;
case 'variable':
return __( 'Select Me', '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