Hi there
thank you, we’re very proud of it 🙂
Regarding your question, could you please explain me better what you want to obtain?
Do you want to show product’s sku under title, inside wishlist table?
I’m not sure of what you mean when you talk about “article” and “heading of the product”, that’s the reason why I ask
Maybe you would find easier to explain attaching some screenshots 🙂
“Do you want to show product’s sku under title, inside wishlist table?”
Yes you are right 🙂
Please, try to add the following code at the end of functions.php file of your theme or child theme
add_action( 'yith_wcwl_table_after_product_name', function( $item ) {
$product = $item->get_product();
$sku = $product->get_sku();
if ( ! $sku ) {
return;
}
?>
<small><?php echo 'Sku: ' . $sku; ?></small>
<?php
}, 10, 1 );
You’re welcome!
We are doing our best to improve our plugins. Our target is to develop and release the best free plugins for WooCommerce, but to achieve this we need your help. Please leave a good review to support us and help our growth