php [WooCommerce Order Barcodes]修复了没有足够的权限来扫描条形码错误
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php [WooCommerce Order Barcodes]修复了没有足够的权限来扫描条形码错误相关的知识,希望对你有一定的参考价值。
/*
* Snippet to fix No Sufficient Permission To Scan Barcodes Error.
* Code goes in the functions.php file in your theme.
*/
add_filter( 'woocommerce_order_barcodes_scan_permission', 'modify_woocommerce_order_barcodes_scan_permission' );
function modify_woocommerce_order_barcodes_scan_permission( $has_permission ) {
// Do any required permission checks here
$has_permission = true;
return $has_permission;
}
以上是关于php [WooCommerce Order Barcodes]修复了没有足够的权限来扫描条形码错误的主要内容,如果未能解决你的问题,请参考以下文章