Barn2 Media WooCommerce Restaurant Ordering v2.1.6 - (Untouched)

virgilio183

Well-known member
☆☆ Special ☆☆
☆ Pro ☆
Master
Joined
May 16, 2021
Messages
25,956
Reaction score
35,357
Points
113
NullCash
626,588
Screenshot 2024-01-30 at 10-12-27 WooCommerce Restaurant Ordering.png

== Description ==
A restaurant ordering plugin for WooCommerce.

== Installation ==
1. Download the plugin from the Order Confirmation page or using the link in your confirmation email.
1. Go to Plugins -> Add New -> Upload, and select the zip file you downloaded.
1. Once installed, click to Activate the plugin.
1. In the dashboard, go to WooCommerce -> Settings -> Restaurant Ordering and enter your License Key in the box at the top. The license key can be found in your order confirmation email.
1. The plugin will automatically create a page called 'Restaurant Order' which contains your food menu based on your product categories.
1. On the same settings page, change any of the order form options as required.
1. Test the Restaurant Order page by viewing it on your website.
1. See the full documentation: https://barn2.com/kb-categories/wro-kb/)for further details and instructions.

Requires at least: 6.0
Tested up to: 6.3.2
Requires PHP: 7.4
Stable tag: 2.1.6
== Changelog ==

= v2.1.6 =
Release date 3 November 2023


* Fix: Product container remained blocked after quick adding to the cart
* Fix: Missing timepicker on the settings page
* Dev: Updated internal libraries and main class
* Dev: Tested up to WordPress 6.3.2 and WooCommerce 8.2.1

info: https://barn2.com/wordpress-plugins/woocommerce-restaurant-ordering/
 

Attachments

  • woocommerce-restaurant-ordering-v2.1.6.zip
    1.3 MB · Views: 3

bbilal142

New member
XNullUser
Joined
Jan 30, 2024
Messages
4
Reaction score
0
Points
1
Location
Karachi
NullCash
4
View attachment 110643

== Description ==
A restaurant ordering plugin for WooCommerce.

== Installation ==
1. Download the plugin from the Order Confirmation page or using the link in your confirmation email.
1. Go to Plugins -> Add New -> Upload, and select the zip file you downloaded.
1. Once installed, click to Activate the plugin.
1. In the dashboard, go to WooCommerce -> Settings -> Restaurant Ordering and enter your License Key in the box at the top. The license key can be found in your order confirmation email.
1. The plugin will automatically create a page called 'Restaurant Order' which contains your food menu based on your product categories.
1. On the same settings page, change any of the order form options as required.
1. Test the Restaurant Order page by viewing it on your website.
1. See the full documentation: https://barn2.com/kb-categories/wro-kb/)for further details and instructions.




info: https://barn2.com/wordpress-plugins/woocommerce-restaurant-ordering/
Do you have any demo of this plugin, Actually I'm looking for it
 

vov4ntoos

New member
XNullUser
Joined
May 11, 2024
Messages
3
Reaction score
0
Points
1
Location
Russia
NullCash
3
Thank you for sharing this update. Old version had issues with correctly displaying plus minus buttons, when quickly adding to cart - this doesn't
class="wc-restaurant-menu-products columns-2 image-left hide-image clickable"
add_filter( 'woocommerce_loop_add_to_cart_link', 'quantity_inputs_for_woocommerce_loop_add_to_cart_link', 10, 2 );
function quantity_inputs_for_woocommerce_loop_add_to_cart_link( $html, $product ) {
if ( $product && $product->is_type( 'simple' ) && $product->is_purchasable() && $product->is_in_stock() && ! $product->is_sold_individually() ) {
$html = '<form action="' . esc_url( $product->add_to_cart_url() ) . '" class="cart" method="post" enctype="multipart/form-data">';
$html .= woocommerce_quantity_input( array(), $product, false );
$html .= '<button type="submit" class="button alt">' . esc_html( $product->add_to_cart_text() ) . '</button>';
$html .= '</form>';
}
return $html;
}
 
Top