cschlichting
Forum Replies Created
-
Forum: Plugins
In reply to: [Autoptimize] Icons BrokenOi @impressao3d, tudo bem?
Como você conseguiu corrigir esse bug? Adicionou a excessão no plugin Autoptimize e depois? Se puder dar uma ajuda… estou com o mesmo problema.Obrigada,
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Total Products🙂 Thanks a lot!
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Total ProductsHi Ewout,
With this code he added the number of items in the order, not the total quantity.
Sorry if I did not explain it right.Nice! It’s work!
I forgot to use _ before billing_cpf🙂 Thanks a lot!!!
I’m trying to use [billing_cpf] but it doesn’t appear in the PDF.
Billing_cpf is a custom field.I put this code in my template_function.php:
function wcdn_custom_order_fields( $fields, $order ) {
if ( ! empty( $order->billing_cpf ) ) {
$fields[‘billing_cpf’] = array(
‘label’ => ‘CPF’,
‘value’ => $order->billing_cpf,
);
}return $fields;
}add_filter( ‘wcdn_order_info_fields’, ‘wcdn_custom_order_fields’, 10, 2 );
Which code I need to use in my invoice.php?
E aí João, conseguiu? Estou com essa mesma dúvida. Gostaria de incluir CPF/CNPJ/IE nesse pdf que gera desse plugin. Se solucionou por favor me responda por favor. Obrigada
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Order tableThank you a lot!
That was it I needed! 🙂