-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Urgent Fix: product and user search not returning results for some users
- Loading branch information
Showing
5 changed files
with
38 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,14 +3,14 @@ | |
* Plugin Name: WooCommerce POS | ||
* Plugin URI: https://wordpress.org/plugins/woocommerce-pos/ | ||
* Description: A simple front-end for taking WooCommerce orders at the Point of Sale. Requires <a href="http://wordpress.org/plugins/woocommerce/">WooCommerce</a>. | ||
* Version: 1.3.10 | ||
* Version: 1.3.11 | ||
* Author: kilbot | ||
* Author URI: http://wcpos.com | ||
* Text Domain: woocommerce-pos | ||
* License: GPL-3.0+ | ||
* License URI: http://www.gnu.org/licenses/gpl-3.0.txt | ||
* Domain Path: /languages | ||
* WC tested up to: 7.9 | ||
* WC tested up to: 8.1 | ||
* WC requires at least: 5.3 | ||
* | ||
* @author Paul Kilmurray <[email protected]> | ||
|
@@ -24,7 +24,7 @@ | |
use function define; | ||
|
||
// Define plugin constants. | ||
const VERSION = '1.3.10'; | ||
const VERSION = '1.3.11'; | ||
const PLUGIN_NAME = 'woocommerce-pos'; | ||
const SHORT_NAME = 'wcpos'; | ||
define( __NAMESPACE__ . '\PLUGIN_FILE', plugin_basename( __FILE__ ) ); // 'woocommerce-pos/woocommerce-pos.php' | ||
|