Hello,
I have the same problem, I have used following code and it’s resolved:
add_action( ‘wpo_wcpdf_after_order_data’, ‘wpo_wcpdf_delivery_date’, 10, 2 );
function wpo_wcpdf_delivery_date ($template_type, $order) {
$document = wcpdf_get_document( $template_type, $order );
?>
<tr class=”delivery-date”>
<th>Delivery Date:</th>
<td><?php echo date_i18n( ‘d-m-Y’, $document->get_custom_field(‘ywcdd_order_delivery_date’) ); ?></td>
</tr>
<?php
}
But now, I am getting following error:
Notice: A non well formed numeric value
encountered in
/home/crudoco/public_html/crudokitchencom/wpincludes/functions.php on line 114
Notice: A non well formed numeric value
encountered in
/home/crudoco/public_html/crudokitchencom/wpincludes/functions.php on line 116
Notice: A non well formed numeric value
encountered in
/home/crudoco/public_html/crudokitchencom/wpincludes/functions.php on line 118
Notice: A non well formed numeric value
encountered in
/home/crudoco/public_html/crudokitchencom/wpincludes/functions.php on line 119
Would you please help me?
Thanks!
Ajay
-
This reply was modified 5 years, 8 months ago by ajaycoolk.