我试图仅为Wordpress中的特定用户角色显示类别。 我发现这段代码有效,因为它没有登录时显示类别产品,或者当我有不同的用户角色时。
但我遇到的问题如下: 该网站使用WPML,我的代码仅适用于英语。但不适用于其他语言。所以我添加了测试另一个类别ID,这是同一类别,但只有这一个用于荷兰语,所以我期待它适用于英语和荷兰语,但它只是不会对英语工作期望。
我现在使用的代码是:
function wholeseller_role_cat( $q ) {
// Get the current user
$current_user = wp_get_current_user();
// Displaying only "Wholesale" category products to "whole seller" user role
if ( in_array( 'wholeseller', $current_user->roles ) ) {
// Set here the ID for Wholesale category
$q->set( 'tax_query', array(
array(
'taxonomy' => 'product_cat',
'field' => 'id',
'terms' => '127,128', // your category ID
)
) );
// Displaying All products (except "Wholesale" category products)
// to all other users roles (except "wholeseller" user role)
// and to non logged user.
} else {
// Set here the ID for Wholesale category
$q->set( 'tax_query', array(
array(
'taxonomy' => 'product_cat',
'field' => 'id',
'terms' => '127,128', // your category ID
'operator' => 'NOT IN'
)
) );
}
}
add_action( 'woocommerce_product_query', 'wholeseller_role_cat' );
因此英语类别ID为127,而荷兰语为128。 有人可以帮助我重新开始工作吗?
希望有人能帮助我吗?
更新
英语和荷兰语现在仅在用户角色为Wholeseller时显示该类别。但我的网站上还有更多语言。
以下是包含相应类别ID的完整列表:
English (en) => 117
Dutch (nl) ===> 118
French (fr) ==> 131
Italian (it) => 134
Spanish (es) => 137
German (de) ==> 442
如何使其适用于超过2种语言?
答案 0 :(得分:1)
更新2 (完整的WPML检测语言代码/产品类别ID)
'field' => 'id'
替换为'field' => 'term_id'
(请参阅相关文档linked):ICL_LANGUAGE_CODE
来检测语言并设置正确的类别。例如,如果你在英语"您的网站版本的产品类别ID为 127
,对于荷兰语,它将为 128
...设置语言代码和类别ID在数组中(在代码的开头)。以下是更新和压缩的代码:
add_action( 'woocommerce_product_query', 'wpml_product_category_and_user_role_condionnal_filter', 10, 1 );
function wpml_product_category_and_user_role_condionnal_filter( $q ) {
// Set HERE this indexed array for each key (as language code in 2 letters)…
// …and the corresponding category ID value (numerical)
$lang_cat_id = array( 'en' => 127, 'nl' => 128, 'fr' => 131, 'it' => 134, 'es' => 137, 'de' => 442, );
// With WPML constant "ICL_LANGUAGE_CODE" to detect the language and set the right category
foreach( $lang_cat_id as $lang => $cat_id )
if( ICL_LANGUAGE_CODE == $lang ) $category_id = $cat_id;
// Get the current user (WP_User object)
$current_user = wp_get_current_user();
// Displaying only "Wholesale" product category to "whole seller" user role (IN)
// or displaying other product categories to all other user roles (NOT IN)
$operator = in_array( 'wholeseller', $current_user->roles ) ? 'IN' : 'NOT IN' ;
// The conditional query
$q->set( 'tax_query', array( array(
'taxonomy' => 'product_cat',
'field' => 'item_id', // Replaced 'id' by 'term_id' (see documentation)
'terms' => $category_id, // Id depending on language
'operator' => $operator // Depending on user roles
) ) );
}
代码放在活动子主题(或主题)的function.php文件中,或者放在任何插件文件中。
这已经过测试,适用于多语言WPML产品类别ID。