Woocommerce: list all products without a shipping class
Information originally found here: https://shanegowland.com/advanced-woocommerce/2018/how-to-find-woocommerce-products-without-a-shipping-class/
Just create a new PHP file in wp-content/plugins wi…
How to add a ‘remove from category’ bulk editing option for products in Woocommerce
Original information from: https://www.businessbloomer.com/woocommerce-bulk-edit-remove-product-categories-admin/
All you need to do is add the following code to your theme’s functions.php file…
Disable MFA for Microsoft 365 accounts
Microsoft Entra admin centre go to Home | Security | Multifactor authentication
Scroll down the page to the ‘Security defaults’ section then click on ‘Manage security defaults’ and change the sett…
Migrating sites from one cPanel server to another
Update MX records on old server to mx1.krystal.co.uk / mx2.krystal.co.uk
Copy sites to new server
If site uses SpamExperts, on new server click on ‘Toggle Protection’ for the site twice on new…
Tim – referrals
When a new referral has signed up, need to update ticket #25913 and also add £70 credit to his WHMCS account.
Cron to automatically delete e-mails
This cron will automatically delete e-mails from the Sent folder older than seven days
find /home/[cpanelusername]/mail/[domain]/[e-mail account]/[folder]/cur -type f -ctime +7 -exec rm -f {} \;…