Snuk
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Add order notes to "New order" emailAlso, there might be some confusion between order notes and order comments. I’m talking about a field where customers can add a comment / personal message to their order. The comment is shown in the backend but I just can’t seem to get it to show up on “new order” email.
Forum: Plugins
In reply to: [WooCommerce] Add order notes to "New order" emailThanks, but that didn’t change anything unfortunately.. 🙁
Forum: Plugins
In reply to: [WooCommerce] Please help! Checkout page missing billing addressOh and when I do this:
<?php var_dump($checkout->checkout_fields); ?>
I get this:
array(4) {
[“billing”]=>
NULL
[“shipping”]=>
array(9) {
(and then this is filled with all the fields)How would I fix this? Is this a database problem?
Forum: Plugins
In reply to: [WooCommerce] Please help! Checkout page missing billing addressI’ve narrowed down the issue a bit more. The page is loading the billing template (templates/checkout/form-billing.php), since it shows any HTML I put in there. However, the following lines seem to be giving no output at all:
<?php foreach ($checkout->checkout_fields[‘billing’] as $key => $field) : ?>
<?php woocommerce_form_field( $key, $field, $checkout->get_value( $key ) ); ?>
<?php endforeach; ?>Hope anyone knows where to look from here!