Hello,
I have a little problem, if i hoover over a product picture i get a error.
Fatal error: Class ‘YITH_WCWL_Shortcode’ not found in.
Normally I see the price but now i get a error in the picture.
I tried to change the price displayed where i now get the error.
I paste the following text in the ccs section in Theme Options.
/**
* Only display minimum price for WooCommerce variable products
**/
add_filter(‘woocommerce_variable_price_html’, ‘custom_variation_price’, 10, 2);
function custom_variation_price( $price, $product ) {
$price = ”;
$price .= woocommerce_price($product->get_price());
return $price;
}