It is responsive. However the way it displays on the mobile is not ideal. I need it to be more focused on the online store rather than the layout it displays currently.
The checkout process is quite clunky.
Any help? I need to make this work.
Thanks
Sorry not familiar with editing the templates to much.
Will this only work for the admin emails?
I added this
/**
* Add the field to order emails
**/
add_filter(‘woocommerce_email_order_meta_keys’, ‘my_custom_checkout_field_order_meta_keys’);
function my_custom_checkout_field_order_meta_keys( $keys ) {
$keys[] = ‘payment_method’;
return $keys;
}