当产品中的 ACF true/false 为真时隐藏 woocommerce 上的特定产品

Hide specific products on woocommerce when ACF true/false is true in a product

我创建了一个自定义字段 true/false,并且我希望在产品中选择 true 时不显示在网店中。 我想在 functions.php

中插入代码

例子

if ( in_array( 'subscriber', (array) $user->roles ) || !is_user_logged_in()  ) {

$postid = get_the_ID();
$prd_only_for_Customers = get_field('prd_clients', $postid); // The ACF true/false field }

有人能帮忙吗?

正如霍华德所说,您的问题不完整,但您可以使用以下方法隐藏产品。

您可以在 functions.php 中使用 pre_get_posts 挂钩。自 Woocommerce 3 以来,产品可见性现在由术语 'exclude-from-catalog' 和 'exclude-from-search' 的 'product_visibility' 自定义分类法处理……也请参见 or

所以你应该这样使用 WC_Product CRUD setter methods set_catalog_visibility()

function get_post_ids_by_meta_key_and_value($key, $value) {
    global $wpdb;

    $meta = $wpdb->get_results("SELECT post_id FROM `".$wpdb->postmeta."` WHERE meta_key='".$wpdb->escape($key)."' AND meta_value='".$wpdb->escape($value)."'");

    $post_ids = [];
    foreach( $meta as $m ) {
        $post_ids[] = $m->post_id;
    }

    return $post_ids;
}


add_action('pre_get_posts', function( $query ){
    if ( $query->is_main_query() && is_woocommerce() && !is_user_logged_in() ) {
        $product_ids = get_post_ids_by_meta_key_and_value('prd_clients', 1);
        foreach($product_ids as $id){
            // Get an instance of the product
            $product = wc_get_product($id);
            // Change the product visibility
            $product->set_catalog_visibility('hidden');
            // Save and sync the product visibility
            $product->save();
        }
    }
});

此代码未经测试,如果有效或您遇到任何问题,请告诉我。

如果有人需要这样的东西,这是我的最终代码

// Specific products show only for Customer and administrator role
add_action('pre_get_posts', function( $query ){
    
    $user = wp_get_current_user();

    if ( $query->is_main_query() && is_woocommerce()) {
        if (!check_user_role(array('customer','administrator')) || !is_user_logged_in() ) {
            $product_ids = get_post_ids_by_meta_key_and_value('prd_clients', 1);
            foreach($product_ids as $id){
                // Get an instance of the product
                $product = wc_get_product($id);
                // Change the product visibility
                $product->set_catalog_visibility('hidden');
                // Save and sync the product visibility
                $product->save();
            }
        }
        else{
            $product_ids = get_post_ids_by_meta_key_and_value('prd_clients', 1);
            foreach($product_ids as $id){
                // Get an instance of the product
                $product = wc_get_product($id);
                // Change the product visibility
                $product->set_catalog_visibility('visible');
                // Save and sync the product visibility
                $product->save();
            }
        }
        
    }
    
});