Insert a custom field as a second email address to a completed order in WooCommerce
Insert a custom field as a second email address to a completed order in WooCommerce
Insert a custom field as a second email address to a completed order in WooCommerce
Edit woocommerce subscription email
Updating order meta to have a meta entry from an item in the order
Get a customer’s phone number by woocommerce
Removing ‘woocommerce-no-js’ class from body
As the WooCommerce Development Team suggest that you don’t remove the product_category base slug completely. Because it stops WordPress from being able to distinguish whether it is a page or product category. Although you can change the Product Category Base Slug: Go to Settings -> Permalinks -> Optional -> Product category base Instead of product-category … Read more
To add another order notes custom fields : add in functions.php : /** * add new order note field */ add_filter( ‘woocommerce_checkout_fields’ , ‘customizing_checkout_fields’, 10, 1 ); function customizing_checkout_fields( $fields ) { // Define new custom Order Notes field data array $customer_note = array( ‘type’ => ‘textarea’, ‘class’ => array(‘form-row-wide’, ‘notes’), ‘label’ => __(‘Order Notes … Read more
Take a look at the body class tags. This will help you further define your CSS selectors to target the elements you want to hide. In this use case, you can a single CSS rule to hide the header on each and every woocommerce page. Here is what I would use in your case .woocommerce … Read more
It was my mistake. I forgot I was using a preload link in the head of the file. In the head of the html I had: <link rel = “preload” href = “../wp-content/themes/themename/locationfolders/font.woff2″ as=”font” type = “font/woff2” crossorigin /> Note the .. at the start of the href what it should be is: <link rel … Read more
I’m going to go with Plan B, as above. The reason being that I don’t want the price being potentially manipulated by using JS in the browser. Also, I have no idea how to set the price with JS from the browser! The plan is have a cron job periodically run a script which loops … Read more