QRCODE PDF Print Invoice & Delivery Notes for WooCommerce
-
Hi, I find the plugin that generates the QR code from the woocommerce order number very useful.
I need to print the QR CODE that contains the order number in the PDF that the Print Invoice & Delivery Notes for WooCommerce plugin generates.
I wrote this function but it doesn’t work, can anyone help me?
// Inserisce funzione in PDF Print Invoice & Delivery Notes for WooCommerce
add_filter( ‘wcdn_order_info_fields’, ‘qrcodetag_from_goaskle_com’, 10,2 );
function qrcodetag_from_goaskle_com( $fields, $order ) {
$new_fields = array();
if( get_post_meta( $order->id, ‘qrcodetag_from_goaskle_com’, true ) ) {
$new_fields[‘qrcodetag_from_goaskle_com’] = array(
‘label’ => ‘QR CODE ORDER’,
‘value’ => get_post_meta( $order->id, ‘qrcodetag_from_goaskle_com->getQrCodeUrl($content, $size, $encoding, $ecc, $margin, $version);’, true )
);
}
return array_merge( $fields, $new_fields );
}
- The topic ‘QRCODE PDF Print Invoice & Delivery Notes for WooCommerce’ is closed to new replies.