• hello,

    i am using yith wishlist plugin in my theme. i am trying to add wishlist button in products list page or category page. but its not adding. i checked woocommerce > settings > wishlist also but there also not any function available. anybody help me for the same.

Viewing 1 replies (of 1 total)
  • add this to your functions.php theme’s file

    add_action('woocommerce_after_shop_loop_item', 'show_add_to_wishlist', 50 );
    function show_add_to_wishlist()
    {
      echo do_shortcode('[yith_wcwl_add_to_wishlist]');
    }
Viewing 1 replies (of 1 total)
  • The topic ‘yith wishlist button not adding in the products list page’ is closed to new replies.