kingturban
Forum Replies Created
Viewing 5 replies - 1 through 5 (of 5 total)
-
Forum: Plugins
In reply to: [WooCommerce] Custom shipping method not updating cart totalsJust in case anybody should have the same problem in the future, it seems that the shipping debug mode only affects site admin. So I had to comment out the line 345 from class-wc-shipping.php where it checks if shipping needs to be recalculated.
Forum: Plugins
In reply to: [WooCommerce] Adding a custom shipping fieldYou need to save the information in order metadata to be able to see it.
Something like that
add_action( 'woocommerce_checkout_update_order_meta', 'my_write_to_meta_function' ); function my_write_to_meta_function( $order_id ) { update_post_meta($order_id, "order_meta_field", sanitize_text_field($_POST["my_field_name"])); }Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Price decimal separatorsSent you an email, im using one currency, so every order should have commas.
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Price decimal separatorsThanks for your answer,
Everywhere else in the page decimal separator is comma, but on on the invoice it shows dot and the rare broken invoices that customers get to their emails are the only ones where the separator is comma. (and invoices are broken because parsing doesnt work anymore)
Any suggestion would be welcome
Awesome! Thank you!
Viewing 5 replies - 1 through 5 (of 5 total)