Well, you can display wishlist button under any post types by filter hook or manually on theme .php files. you will need to provide post id as following.
<?php // Under loop $post_id = get_the_ID(); echo do_shortcode( "[wishlist_button id=$post_id]" ); ?>