基于角色的可变产品
P粉174151913
2023-08-06 13:06:26
<p>我有一个销售可变产品的WooCommerce商店。<br /><br />例如:吹箭可变选项:单个物品盒装4个。<br /><br />我正在尝试使可变产品在登录时不显示单个物品选项。我已经做到了隐藏选项标签文本的程度,但并没有完全删除选项。<br /><br />可变选项</p><p><br /></p>
<pre class="brush:php;toolbar:false;">add_filter('woocommerce_variation_option_name', 'custom_hide_single_item_option', 10, 1);
function custom_hide_single_item_option($term_name)
{
// Get the current user's roles
$user = wp_get_current_user();
$user_roles = (array)$user->roles;
// Define the roles to exclude
$roles_to_exclude = array('reseller', 'reseller 1', 'administrator');
// If the user has any of the excluded roles, remove the "Single Item (1pc)" option
if (array_intersect($user_roles, $roles_to_exclude) && $term_name === 'Single Item (1pc)') {
return false;
}
return $term_name;
}</pre>
<p>我提供了我正在使用的PHP代码片段,并附上了该代码片段的结果截图。</p>
我对描述和/或图片中的问题并不太理解/看得明白。我只看到一个下拉菜单,可以选择购买4个。您想要移除下拉菜单吗?在这种情况下,我认为问题不在于PHP吗?