Advertisement
YordanSoares

PDF Invoices & Packing Slips for WooCommerce: Incluye el NIF en los documentos PDF

Sep 22nd, 2023
720
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.44 KB | Software | 0 0
  1. <?php
  2. /**
  3.  * PDF Invoices & Packing Slips for WooCommerce:
  4.  * Incluye el NIF en los documentos PDF (dentro de los datos de facturación)
  5.  */
  6. add_filter( 'wpo_wcpdf_billing_address', function( $address, $document ) {
  7.     if ( ! empty( $document ) && is_callable( array( $document, 'get_custom_field' ) ) && ( $nif = $document->get_custom_field( 'NIF' ) ) ) {
  8.         $address .= sprintf( '<p>CIF/DNI/NIE: %s</p>', $nif );
  9.     }
  10.     return $address;
  11. }, 10, 2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement