Hi
We included a widget that shows items count and wishlist preview in another version of the plugin
You can take a look to this feature on our landing page ??
Otherwise, I think you could easly implement a new shortcode that shows items count: here an example code
if( ! function_exists( 'yith_wcwl_add_items_count_shortcode' ) ){
function yith_wcwl_add_items_count_shortcode(){
add_shortcode( 'yith_wcwl_items_count', 'yith_wcwl_print_items_count_shortcode' );
}
add_action( 'init', 'yith_wcwl_add_items_count_shortcode' );
}
if( ! function_exists( 'yith_wcwl_print_items_count_shortcode' ) ){
function yith_wcwl_print_items_count_shortcode(){
$count = yith_wcwl_count_products();
$template = "<span class='yith-wcwl-items-count'>$count</span>";
return $template;
}
}
This will register [yith_wcwl_items_count]
that outputs count of items in wishlist