Automatically Complete all WooCommerce orders

Many people likes to mark WooCommerce orders completed automatically, as soon as they are placed. There is no default option in WooCommerce to do this directly from admin panel. But this is very easy and small customization – a few lines of codes. Code goes in the functions.php file of… Read More »

Remove WooCommerce product link from cart and thank you page

WooCommerce product links can be removed from shopping cart and thank you page. woocommerce_cart_item_permalink filter deals with the product permalink on shopping cart page. And woocommerce_order_item_permalink filter deals on thank you page. Returning false will simply remove product links from those pages. In the above code, __return_false is a default… Read More »

Show customer details on WooCommerce thank you page

If you are accepting guest orders on your WooCommerce store, after placing an order, guest users/not logged in users don’t see their details (customer details – billing/shipping addresses) on the thank you page. This can be confusing for some users, as they might be feeling comfortable seeing their billing/shipping address… Read More »

Customize WooCommerce order notes placeholder and label

By default the label of “order notes” on WooCommerce checkout page is “Order notes”, and placeholder is “Notes about your order, e.g. special notes for delivery.”. This can be updated using woocommerce_checkout_fields filter. Modify the placeholder and label as per your need, from the below code. Code goes in the… Read More »