So your server wouldn't let you display 999 products on the same page? 😀 This is how to fix if you have set too many products to be displayed on your WooCommerce products page. Insert this code in functions.php: add_filter('products_per_page',function(){return 1;});...
Wordpress and WooCommerce Custom Code Snippets
How to not load jquery-ui-accordion.min.css in WordPress
Sometimes in your Wordpress site, you need a jquery to not load at all, then its useful to disable it instead of editing plugin/theme or other files. To not load load jquery-ui-accordion.min.css please us this code snippet in your themes functions.php: add_action(...
Add a message or notes to order emails (WooCommerce)
Sometimes it comes in handy to be able to give information to your customers in the emails they receive. It can be info on where to download extra files, like manuals or consumer right documents. Or any other instructions or promotional text, like a coupon code to get...
SOLUTION | Error: Cookies are blocked or not supported by your browser. You must enable cookies to use WordPress.
If you use Wordpress multisite and can't log in to subsites, and get the error "Cookies are blocked or not supported by your browser. You must enable cookies to use WordPress." you can paste a small code in your wp-config.php file: Read here about how to...