add_filter( 'woocommerce_loop_add_to_cart_link', 'custom_add_to_cart_button_text_archives', 10, 2 );
function custom_add_to_cart_button_text_archives( $link, $product ) {
if ( $product->is_type( 'variable' ) ) {
// Zmiana tekstu przycisku dla produktów zmiennych
$link = str_replace( 'ADD TO CART', 'SELECT', $link );
}
return $link;
}
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter