Hi there
As I said in my answer to your previous topic, your theme is applying some style over our plugin, that hides the Add to Wishlist button from product page
If you want to know why, you should ask to theme developers; on the other hand, if you try our plugin with another theme (EG a twenty theme) you’ll find out that under no circumstances the button is hidden
The best that I can do is to help you override theme’s css; please, try to add the following rules at the end of Additional CSS section of your theme customizer (WP Dashboard -> Appearance -> Customize)
.yith-wcwl-wishlistexistsbrowse a,
.yith-wcwl-wishlistaddedbrowse a{
display: block;
padding: 15px;
border-radius: 5px;
text-transform: uppercase;
font-size: 11px;
line-height: 1;
margin-bottom: 5px;
bottom: 20px;
position: relative;
}
Hope this helps