Add Product SKU to Product Title in Woocommerce single product page & shop page

后端 未结 2 1696
感动是毒
感动是毒 2021-01-26 06:25

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

2条回答
  •  迷失自我
    2021-01-26 07:17

    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!

提交回复
热议问题