Rename the add to cart button on external products in WooCommerce

Rename the add to cart button on external products in WooCommerce on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_filter( 'woocommerce_product_single_add_to_cart_text', 'wc_override_external_button_label', 9999, 2 );
add_filter( 'woocommerce_product_add_to_cart_text', 'wc_override_external_button_label', 9999, 2 );
 
function wc_override_external_button_label( $text, $product ) {
   if ( $product->is_type( 'external' ) ) $text = 'Buy Now →';
   return $text;
}

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.