i want to add product sku to actual product title. for example, if product name is \"Dress design\" & product sku is \"2790\" the new product title should be \"Dress design
Just replace this line:
echo '' . esc_html( $product->get_sku() ) . '';
with:
echo '' . $product->get_title() . ' - ' . esc_html( $product->get_sku() ) . '';
You are done with it!