FOX - Currency Switcher for WooCommerce

YITH WooCommerce Product Bundles

URL del plugin: https://yithemes.com/themes/plugins/yith-woocommerce-product-bundles/
  • en el archivo functions.php de tu actual tema hijo de WordPress, añade el siguiente código:
    add_filter('woocs_fixed_raw_woocommerce_price', function ($tmp_val, $product, $price) {
        if (!$price) {
            $tmp_val = $price;
        }
    
        return $tmp_val;
    }, 99, 3);