Single product – Add visual SKU
// Add SKU under title add_action(‘woocommerce_single_product_summary’, ‘plaats_sku_onder_titel’, 11); function plaats_sku_onder_titel() { global $product; if ( $product->get_sku() ) { echo ‘ ‘ . esc_html__( ‘Referentie:’, ‘Woocommerce’ ) . ‘ ‘ . esc_html( $product->get_sku() ) . ‘ ‘; } }Continue reading