WPSlash

How to Use WooFood for Table Ordering

Wednesday August 12, 2020

If you are thinking to use WooFood for in-table ordering here is a small code snippet that will get automatically get the table number .

The below code can be added on functions.php of your child theme.

With the below code you can set the parameter table to the table number like

https://www.yoursite.com/?table=45

add_action( 'wp_head', 'wpslash_custom_check_for_table_param' );

function wpslash_custom_check_for_table_param() {
	global $woocommerce;
     if( isset( $_GET['table'] ) ) {
		 WC()->customer->set_billing_first_name($_GET['table']);

     }
	if(empty(WC()->customer->get_billing_first_name()))
	{
wc_add_notice('Scan QR Code to continue ordering', 'error' );
wc_print_notices();
	
	}
}

Leave a Comment

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

Related Articles

Tutorials

How to Connect Your WordPress Restaurant Website to DoorDash, Uber Eats & Grubhub (2025)

Why Integrating Third-Party Delivery Platforms With Your Restaurant Website Matters Running a restaurant in 2025 means juggling a brutal reality: third-party delivery platforms like DoorDash, Uber Eats, and Grubhub command enormous consumer attention, but they charge commission fees that typically range from 15% to 30% per order. On a $40 delivery order, that’s $6 to […]
April 29, 2026
Tutorials

How to Set Up Discount Coupons and Promo Codes for Your WooCommerce Restaurant Website (2025)

Why Coupons and Promo Codes Matter for Online Restaurant Ordering A customer opens your restaurant’s online ordering page, browses the menu, adds a few items to the cart — and then hesitates. The total feels a bit high. They close the tab. That abandoned cart scenario plays out thousands of times daily across restaurant websites, […]
April 28, 2026
Tutorials

How to Set Up Email and SMS Order Notifications for Your WooCommerce Restaurant Website (2025)

Why Email and SMS Notifications Matter for Restaurant Orders A customer places an order on your <a href="https://www.wpslash.com/how-to-set-up-a-catering-and-bulk-order-system-on-your-woocommerce-restaurant-website-2025/" title="How to Set Up a Catering and Bulk Order System on Your <a href="https://www.wpslash.com/how-to-set-up-real-time-order-tracking-for-your-woocommerce-restaurant-website-2025/" title="How to Set Up Real-Time Order Tracking for Your WooCommerce <a href="https://www.wpslash.com/how-to-set-up-online-ordering-for-your-restaurant-website-with-wordpress-and-woocommerce-from-scratch/" title="How to Set Up Online Ordering for Your Restaurant Website With […]
April 28, 2026