WPSlash

Increase Maximum Number of Orders on Automatic Printing Software for WooFood

Tuesday November 17, 2020

The below code snippet is for increasing the default 10 as maximum number of orders the Automatic Printing Software will fetch .

Copy and paste the following snippet inside your functions.php on your child theme and this will increase the maximum number of orders to fetch to each sync to 20 (You can change 20 to the number of orders you want to fetch)

Please note also the by increasing the number of orders fetched this will also increase the resources needed of your server on each request the WooFood Automatic Printing Software is making. A suggestion is increase it step by step .. Try to increase it at 20 for example and check your server load while the software is running. If you don’t see any server load difference you can increase it even more .

PS: The most restaurants are already covered with 10 orders at processing status at a time . Increase it only if you have more than 10 orders at a time with processing status on WooCommerce

add_filter('wpslash_autoprint_orders_limit', function()
{
return 20;
}
);

Leave a Comment

Your email address will not be published. Required fields are marked *

Related Articles

Tutorials

How to Protect Your WordPress Restaurant Ordering Site from Spam Orders, Fake Submissions, and Bot Attacks (Complete Security Guide)

Why Restaurant Websites Are Prime Targets for Spam and Bot Attacks (And What’s at Stake) If you’re running a WordPress restaurant ordering site, you’ve probably already noticed something unsettling: fake orders trickling in, bizarre form submissions, or a sudden spike in account registrations from email addresses that look like keyboard smashes. You’re not imagining things […]
March 26, 2026
Tutorials

How to Optimize Restaurant Food Photography and Image Compression for Faster WooCommerce Menu Pages (Complete Guide)

Why High-Quality Food Images Make or Break Your Restaurant’s Online Orders Here’s a stat that should grab your attention: studies consistently show that menu items with high-quality photos receive up to 30% more orders than those without images. When customers can’t smell or taste your food through a screen, photography becomes your most powerful selling […]
March 25, 2026
Tutorials

How to Customize Colors, Images, and Branding for Your Restaurant Ordering Website in WooCommerce (Complete Visual Guide)

Your restaurant’s food might be incredible, but if your restaurant ordering website isn’t a one-afternoon project — it’s an ongoing process of refinement. Start with the highest-impact changes: set your brand colors, upload optimized food photography, and make sure your buttons and checkout page look polished. Then layer in custom CSS tweaks and email branding […]
March 25, 2026