php 将WooCommerce POS Pro用户限制为一个(或多个)商店

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 将WooCommerce POS Pro用户限制为一个(或多个)商店相关的知识,希望对你有一定的参考价值。

<?php 

// the code below goes in your theme's functions.php file

function my_custom_pos_template_redirect() {
  
  // a manual map of Store IDs => array of User IDs
  $restrict = array(
    1524 => array( 52, 863 ),  // ie: Store ID 1524 restricted to User IDs 52 and 863
    6252 => array( 863 )       // ie: Store ID 6252 restricted to User ID 863
  );
  
  // get current User ID & logged in Store ID
  $user_id = get_current_user_id();
  $store_id = get_user_option('woocommerce_pos_store');
  
  // check User ID array exists and User ID in array, if not, display error
  if( ! isset( $restrict[$store_id] ) || ! in_array( $user_id, $restrict[$store_id] ) ) {
    wp_die( 'You do not have sufficient permissions to access this store.' );
  }
  
}

// woocommerce_pos_template_redirect runs just before the POS template is rendered
add_action( 'woocommerce_pos_template_redirect', 'my_custom_pos_template_redirect', 20 );

以上是关于php 将WooCommerce POS Pro用户限制为一个(或多个)商店的主要内容,如果未能解决你的问题,请参考以下文章

php 在WooCommerce POS中使用自定义字体

php 来自WooCommerce POS的隐藏费用和送货按钮

php Outfitter Pro Off屏幕内容,WooCommerce

php integracióndewoocommerce con pay membership pro #wordpress #woocommerce

带有 WooCommerce 扩展的 WP Webhooks Pro 不发送订单项

WooCommerce:向 WC Vendors Pro 添加其他表单字段属性