• I tried using Woocommerce wishlist plugin. It shows up under add-to-cart button. Because you plugin removes the existing add-to-cart button, my shortcode for wishlist won’t work. So, I added this code so this could show wishlist button under each of table variation:

    add_action( 'woo-variations-table', 'add_content_after_addtocart_button_func' );
    /*
     * Content below "Add to cart" Button.
     */
    function add_content_after_addtocart_button_func() {
    
            // Echo content.
            
    	 echo do_shortcode("[ti_wishlists_addtowishlist]");
    }

    Please help me!

    The page I need help with: [log in to see the link]

  • The topic ‘Wishlist shortcode not working’ is closed to new replies.