This topic is: not resolved
-
Hello
My customer ask me to show the Sku in the product categories list and in the slide,
after short description.
I tried to insert in function php this file but it does not work.
Can you help me?
Thanks
——————————————————-
if($display == ‘list’){
$html = ”;
$html .= ‘<h2 class=”dhvc-woo-title dhvc-woo-clearfix”>’;
$html .= ‘id) . ‘”>’.get_the_title($product->id) . ‘‘;
$html .= ‘</h2>’;
if ( wc_product_sku_enabled() && ( $product->get_sku() || $product->is_type( ‘variable’ ) ) ){
$html .= ‘‘;
$html .= ‘‘;
$html .= __( ‘SKU:’, ‘woocommerce’ );
$html .= ‘‘;
$html .= ( $sku = $product->get_sku() ) ? $sku : __( ‘N/A’, ‘woocommerce’ );
$html .= ‘‘;
$html .= ‘‘;
}
$output_title = $html;
}
return $output_title;
}
add_filter(‘dhvc_woo_title’, ‘dhvc_woo_title_custom’,10,3);
———————————————————