mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-02 12:02:25 +08:00
7 lines
360 B
Text
7 lines
360 B
Text
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;
|
|
}
|