Hi @infomrprod,
Can you please try adding the following code under functions.php file locates in your child theme?
add_filter( 'woocommerce_cart_item_price', 'filter_cart_item_price', 999, 3 );
function filter_cart_item_price( $price_html, $cart_item, $cart_item_key ) {
if( $cart_item['data']->is_on_sale() ) {
return $cart_item['data']->get_price_html();
}
return $price_html;
}
Let us know how it goes!