skip to Main Content

i’d like to display the woocommerce price in the Add to cart button.

the code on this post works for the variations but not a simple product. any ideas how I modify it to work on a simple product?

1

Answers


  1. add_filter( 'woocommerce_product_add_to_cart_text', 'your_slug_add_to_cart_text', 10, 2 );
    function your_slug_add_to_cart_text( $text, $product ) {
        return sprintf( '%s - %s', $text,  strip_tags( wc_price( wc_get_price_to_display( $product ) ) ) );
    }
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search