jonathansavelski
Forum Replies Created
-
Forum: Plugins
In reply to: [Mercado Pago payments for WooCommerce] Error Última versiónNo contestan. Hicimos un ticket y lo cerraron sin resolución alguna.
Forum: Plugins
In reply to: [Mercado Pago payments for WooCommerce] Error Última versiónNo solo hay error con el pago de tarjetas, si no con los pagos en efectivo. Hemos actualizado a la última versión y aún asi da error.
Versión del Plugin: 8.6.1
Versión de WooCommerce: 10.3.4
Versión de PHP: 8.3.25
Versión de WordPress: 6.8.3
URL de la tienda: esep.com.ar
El error exacto que aparece es:
“Tu pago fue rechazado porque hubo un errorTe recomendamos intentar nuevamente o pagar con otro medio de pago.”
Forum: Plugins
In reply to: [Mercado Pago payments for WooCommerce] Error Pago con Mercado PagoNo se está mostrando el nombre del producto. Se está mostrando la descripción corta del mismo, con guiones entre medio. La captura que pasé es el ejemplo.
Forum: Plugins
In reply to: [Price Based on Country for WooCommerce] Cache problemHere you can see the problem. When we enter to the product page is OK, but when the price is displayed in others pages it is not working.

- This reply was modified 11 months, 2 weeks ago by jonathansavelski.
Forum: Plugins
In reply to: [Price Based on Country for WooCommerce] Cache problemHello. Could you check it?
Forum: Plugins
In reply to: [Price Based on Country for WooCommerce] Cache problemForum: Plugins
In reply to: [FunnelKit - Funnel Builder for WooCommerce Checkout] Conditional fieldsHello, thank you for the response. Unfortunately, it still does not working. It hides the field but the validation is still there and it gives the alert, since the field is requeried.
Forum: Plugins
In reply to: [FunnelKit - Funnel Builder for WooCommerce Checkout] Conditional fieldsI tried this snippet but it is not working
add_filter('woocommerce_default_address_fields', 'ocultar_validar_cuit_cuilde_ar'); function ocultar_validar_cuit_cuilde_ar($fields) { // Verificar si el país seleccionado es Argentina (código de país: AR) if (isset($_POST['billing_country']) && $_POST['billing_country'] === 'AR') { // Deshabilitar la validación del campo 'billing_cuitcuil' $fields['billing_cuitcuil']['required'] = false; } return $fields; }Forum: Plugins
In reply to: [FunnelKit - Funnel Builder for WooCommerce Checkout] Conditional fieldsYes, hidding the fields works, but the validation still there when you try to purchase. I tried some php codes to manage that but none worked. Could you help me?