Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Paypal #41

Open
helud opened this issue May 27, 2022 · 1 comment
Open

Paypal #41

helud opened this issue May 27, 2022 · 1 comment

Comments

@helud
Copy link

helud commented May 27, 2022

Hola!

Tenemos el plugin funcionando pero no podemos deshabilitar los campos DNI y condición impositiva cuando el cliente elige Paypal para pagar (son clientes del exterior y no saben qué poner en esos campos).
Intentamos con algunos hooks en functions.php del theme pero hasta el momento nos resultó imposible deshabilitar esos dos campos.
¿Alguna idea de cómo lograrlo?
Desde ya, muchas gracias!

@villaboamiguel
Copy link

Hola,
Fijate en el archivo

public function woo_ifactura_display_admin_order_meta($order)
podes agregar un if para checkear el método de pago:

if ($order->get_payment_method() !== 'paypal')
{
echo '<p><strong>'.__('DNI',"woo-ifactura").':</strong> ' . get_post_meta($this->get_order_id($order), 'DNI', true) . '</p>
            <p><strong>'.__('Tax Treatment',"woo-ifactura").':</strong> ' . $this->woo_ifactura_gettipocondicionimpositiva(get_post_meta($this->get_order_id($order), 'condicionimpositiva', true)) . '</p>
            <p><strong>'.__('People Registry Type',"woo-ifactura").':</strong> ' . $this->woo_ifactura_gettipopersona(get_post_meta($this->get_order_id($order), 'DNI', true)) . '</p>';
}

Es una idea que no probe, es una sugerencia de donde empezaria a mirar.

Saludos

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants