Change product select options add to cart button text in WooCommerce

Change product select options add to cart button text in WooCommerce.

Snippet Type

Execute on Child Sites

Snippet

add_filter( 'woocommerce_product_add_to_cart_text', 'replace_loop_add_to_cart_button_text', 20, 2 );
function replace_loop_add_to_cart_button_text( $text, $product ) {
    if ( $product->is_type( 'variable' ) && $product->is_purchasable() ) {
        $text = __( 'Options', 'woocommerce' );
    }
    return $text;
}

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