I, nor the rest of the internet knows why the Packlink Pro Plugin adds a message in store checkouts that says You have to enter your address first in order to search for Drop-Off location. Drop what off? I’m the customer, I’m buying something, not dropping…
Snip Description
Hide out of stock items from products shortcodes
If you’re managing an e-commerce website, it’s crucial to offer a seamless shopping experience for your customers. One way to enhance this experience is by hiding out-of-stock items from product shortcodes. This ensures that customers only see products that are available for purchase, thereby streamlining their…
woocommerce_add_to_cart_fragments not working since version 7.8
The Cart Fragments script, responsible for updating the cart widget after a successful add-to-cart event, can cause a performance issue on stores not making use of that functionality. To mitigate this, the script will now only be enqueued if using the Mini Cart widget. This change…
Royal Mail Click and Drop IP Addresses
Recently we had some issues with CloudFlare blocking Royal Mail’s Click and Drop IP Addresses – we had to whitelist them in CloudFlare. These are the IP addresses to set 51.136.83.33 Royal Mail 52.155.224.209 Royal Mail
Remove the Zapier notice on posts, pages and products
There doesn’t appear to be a way to remove the “Connect Yoast SEO with Zapier to instantly share your published posts with 2000+ destinations such as Twitter, Facebook and more.” that clutters up the Publish meta box. Other options can be disabled in the Yoast SEO…
Remove “Get the app” mobile messaging from WooCommerce Admin emails
Another annoyance from the WooCommerce Marketing Department has added this footer line to the emails.
Update WooCommerce database using the wp cli
In certain cases, the WooCommerce plugin will update, but the WooCommerce database update will fail. This mismatch between the WooCommerce database and WooCommerce can cause quite a few potential issues. To solve this, the WooCommerce database can be updated through the command line. wp wc update…
Make Restock refunded items unchecked by default
A quick one to automatically uncheck the “Restock refunded items” in the WooCommerce Order Admin by default. Doing this can save a few human errors in certain circumsances.
Remove WooCommerce DB Notices
Sometimes WooCommerce gets stuck showing admins the same notices over and over, even when the action has been completed. WooCommerce database update done is a common culprit. One solution is to manually mark the actions as “actioned” in the database. You’ll find a table wp_wc_admin_notes where…
Change any payment gateway icon
Change any payment gateway icon with this piece of code that goes into your functions.php
Add custom field below order notes
The official WooCommerce documentation shows you how to add custom fields to the billing or shipping section of the checkout.
This guide shows you how to add fields in the Order Notes section of the checkout.
Skip the cart page and combine the cart and checkout pages
For a super sleek checkout experience, we can combine the cart and checkout pages together very easily.
How to redirect directly to the product page when the category only holds one item
How to redirect directly to the product page when the category only holds one item
Disable WooCommerce SKU functionality
Here is a quick and easy one-liner to disable the WooCommerce SKU functionality completely.
Disable WooCommerce Nag Messages
Bored of seeing “Connect your store…” nag messages? Are they confusing your clients?
Move the Yoast WordPress SEO Meta Box below the Product Data Box
Yoast is big and bossy, with it’s default meta box placement directly below the main content, it can break the flow of entering Product Data and confuse clients. Here’s a snippet to make it appear at the bottom, below the Product Data meta box, ensuring a nice flow and grouping of WooCommerce Data
Change the “Ship to a different address?” default state
There’s an interesting discussion in WooCommerce Issue #2571. regarding the default state of the “Deliver to a different address” checkbox.
For a less cluttered checkout screen and from a UX view point, we could uncheck it by default
How to hide the single product page
This will hide the single product page the proper WordPress way by making the product not public. Pop this into your functions.php file. add_filter( ‘woocommerce_register_post_type_product’,’hide_product_page’,12,1); function hide_product_page($args){ $args[“publicly_queryable”]=false; $args[“public”]=false; return $args; }
Change default sorting for a specific Woocommerce product category archive pages
WooCommerce only has a setting to change the sort order of all product archive pages, occasionally you may want to change default sorting for a specific Woocommerce product category archive pages. For example your store may be set to show products by Popularity by default, however,…
Add custom items to LD JSON Schema
This snippet will allow you to add custom items to LD JSON Schema generated by WooCommerce