Display price in the add to cart button in WooCommerce

Display price in the add to cart button in WooCommerce on child sites.

Snippet Type

Execute on Child Sites

Snippet

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 ) ) ) );
}

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