2 回答
TA贡献1777条经验 获得超10个赞
当用户不被允许时,以下代码将根据您的自定义产品字段过滤产品(如果他们尝试手动访问受保护的产品,则会将他们重定向到商店页面)。
// Conditional function checking for authorized users
function is_authorized_user(){
if ( is_user_logged_in() ) {
$user = wp_get_current_user();
$caps = $user->allcaps;
if ( ( isset($caps['edit_product']) && $caps['edit_product'] )
|| in_array( 'verified_buyer', $user->roles ) ) return true;
}
else return false;
}
// Filter product query (and search) from unauthorized users
add_filter( 'woocommerce_product_query_meta_query', 'only_authorized_users_meta_query', 10, 2 );
function only_authorized_users_meta_query( $meta_query, $query ) {
// Hide specific products from unauthorized users
if( ! is_authorized_user() && ! is_admin() ) {
$meta_query['relation'] = 'OR';
$meta_query[] = array(
'key' => '_hide_from_unauthorize_users',
'value' => 'no',
'compare' => '='
);
$meta_query[] = array(
'key' => '_hide_from_unauthorize_users',
'compare' => 'NOT EXISTS'
);
}
return $meta_query;
}
// Security: Redirect unauthorized users if accessing prodtected products
add_action( 'template_redirect', 'only_authorized_users_redirect' );
function only_authorized_users_redirect() {
// Specific products redirect for unauthorized users (to be sure)
if( is_product() && ! is_authorized_user()
&& get_post_meta( get_the_id(), '_hide_from_unauthorize_users', true ) === 'yes' ) {
wp_safe_redirect( get_permalink( wc_get_page_id( 'shop' ) ) );
exit;
}
}
代码位于活动子主题(或活动主题)的 functions.php 文件中。测试和工作。
您可以不使用其他用户角色,而是:
1)使用WC_Customer is_paying_customer布尔属性,如:
if( WC()->customer->get_is_paying_customer() ) {
// Is a playing customer
} else {
// NOT a playing customer
}
2)或添加自定义用户元为:
update_user_meta( get_current_user_id(), 'allowed_customer', '1' );
然后您将使用以下方法进行检查:
if( get_user_meta( get_current_user_id(), 'allowed_customer', true ) ) {
// Allowed customer
} else {
// NOT Allowed customer
}
TA贡献1829条经验 获得超7个赞
当您说“删除”时,我假设您实际上是在尝试隐藏该产品。
所以,使用pre_get_posts动作钩子是你的方法。
下面的代码会隐藏有其领域的任何产品_hide_from_unauthorize_users设置为yes从没有被登录的用户中,并从已登录的用户,但不是一个verified_buyer,也不是administrator。
将下面的代码片段放在您的functions.php文件中并注意注释:
<?php
/**
* @param WP_Query $query
*/
function _hide_products_from_certain_users( $query ) {
if ( is_admin() ) {
return;
}
/**
* Create the query which will make sure only products that are allowed to bee seen will show up.
*/
$meta_query[] = array(
'key' => '_hide_from_unauthorize_users',
'value' => 'yes',
'compare' => '!=',
);
$user = wp_get_current_user();
// If user is not logged in.
if ( ! is_user_logged_in() ) {
$query->set( 'meta_query', $meta_query );
} else {
$authorized_user_role = in_array( 'verified_buyer', (array) $user->roles );
$admin_role = in_array( 'administrator', (array) $user->roles );
// If the current user is not a verified_buyer nor an administrator.
if ( ! $authorized_user_role && ! $admin_role ) {
$query->set( 'meta_query', $meta_query );
}
}
}
add_action( 'pre_get_posts', '_hide_products_from_certain_users' );
顺便说一句,你的代码中有一些语法错误,我修复了它们。
- 2 回答
- 0 关注
- 166 浏览
添加回答
举报