200: parsererror
-
I have added the following code that I have seen in some other ticket but I still get error 200: parsererror
/** * PDF Invoices & Packing Slips for WooCommerce: * Incluye el NIF en los documentos PDF */ add_filter( ‘wpo_wcpdf_billing_address’, function( $address, $document ) { if ( ( $order = $document->order ) && ( $nif = $order->get_meta( ‘NIF’ ) ) ) { $address .= sprintf( ‘<p>CIF/DNI/NIE: %s</p>’, $nif ); } return $address; }, 10, 2 );
thanks
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘200: parsererror’ is closed to new replies.