adding the dni field
-
I am trying to configure the dni field with the following code.
/**
*Incluir NIF en la factura (necesario el plugin WooCommerce PDF Invoices & Packing Slips)
*/add_filter( ‘wpo_wcpdf_billing_address’, ‘incluir_nif_en_factura’ );
function incluir_nif_en_factura( $address ){
global $wpo_wcpdf;echo $address . ‘<p>’;
$wpo_wcpdf->custom_field( ‘NIF’, ‘NIF: ‘ );
echo ‘</p>’;
}I find that parts of the web stop working for me.
I see that the variable wpo_wcpdf is in desusom you can help me.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘adding the dni field’ is closed to new replies.