Only Include In-Stock WooCommerce Products in Grid

The following code can be used to modify the grid’s items to only include products listed as “In Stock”. Only Applicable for WooCommerce Product Grids.

Step 1:

Get your grid’s ID.

Step 2:

Add the following code to your theme’s “functions.php” file, modifying the number “1” with your grid’s ID.

add_filter('essgrid_modify_posts', 'eg_mod_posts', 10, 2);
 
function eg_mod_posts($posts, $grid_id) {
 
    // only process if Grid ID equals "1"
    if($grid_id == 1) {
 
        $products = array();
 
        foreach($posts as $post) {
 
            $id = $post['ID'];
            $meta = get_metadata('post', $id);
 
            if($meta['_stock_status'][0] == 'instock') {
 
                $products[] = $post;
 
            }
 
        }
 
        return $products;
 
    }
 
    return $posts;
 
} 
Only Include In-Stock WooCommerce Products in Grid

Further Resources for Web Design and Development Enthusiasts

Alright! We've embarked on quite an adventure exploring the realms of this topic. But why stop there? The world of web design and development is vast, and there's always more to learn and discover. Let's dive into some resources that'll keep your knowledge fresh, your skills sharp, and your passion ignited:

The Author

KC

Strength does not come from winning. Your struggles develop your strengths. When you go through hardships and decide not to surrender, that is strength.

Liked this Post?
Please Share it!