Hi,
I have the same issue, but only for grouped products i get ‘Free’
My problem appears suddenly someday. Maybe i have updated the plugin. It shows me a text ”free” in grouped products in wishlist view,
it doesn’t show me the price as it did before.
Also, i have found, from where the issue came, i provide you the lines of the code in wishlist-view.php.
<?php if( $show_price ) : ?>
<td class=”product-price”>
<?php
$base_product = $product->is_type( ‘variable’ ) ? $product->get_variation_regular_price( ‘max’ ) : $product->get_price();
echo $base_product ? $product->get_price_html() : apply_filters( ‘yith_free_text’, __( ‘Free!’, ‘yith-woocommerce-wishlist’ ) );
?>
</td>
<?php endif ?>
Is any other filter, which i can use and get the grouped prices and not the text ”Free”?