Now I am using this code :
if( defined( ‘YITH_WCWL’ ) && ! function_exists( ‘yith_wcwl_add_wishlist_to_loop’ ) ){
function yith_wcwl_add_wishlist_to_loop(){
echo do_shortcode( ‘[yith_wcwl_add_to_wishlist]’ );
}
add_action( ‘woocommerce_after_shop_loop_item’, ‘yith_wcwl_add_wishlist_to_loop’, 10 );
and able to see “add to wishlist” on every product page and when I am adding product in wishlist then they are easily going in wishlist, I have checked database.
But these are not showing whole wishlist products.
Can you please help me?