simple cart button text change

PHOTO EMBED

Thu Jul 04 2024 09:53:26 GMT+0000 (Coordinated Universal Time)

Saved by @Promakers2611

add_filter( 'woocommerce_product_single_add_to_cart_text', 'woocommerce_custom_single_add_to_cart_text' ); 
function woocommerce_custom_single_add_to_cart_text() {
    return __( 'See Prices', 'woocommerce' ); 
}

// To change add to cart text on product archives(Collection) page
add_filter( 'woocommerce_product_add_to_cart_text', 'woocommerce_custom_product_add_to_cart_text' );  
function woocommerce_custom_product_add_to_cart_text() {
    return __( 'See prices', 'woocommerce' );
}
content_copyCOPY