Hello,
It is a bug in our theme and we will fix it in our next theme update. Please, edit the file woodmart\inc\integrations\woocommerce\modules\quick-view.php
and replace the following line
remove_action( 'woocommerce_single_product_summary', array( XTS\WC_Wishlist\UI::get_instance(), 'add_to_wishlist_single_btn' ), 33 );
with this one
if ( woodmart_get_opt( 'wishlist', 1 ) ) {
remove_action( 'woocommerce_single_product_summary', array( XTS\WC_Wishlist\UI::get_instance(), 'add_to_wishlist_single_btn' ), 33 );
}
Kind Regards