Home Forums WoodMart support forum Out Of Stock Products

Out Of Stock Products

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #78145

    grapehic
    Participant

    I want to show products that are out of stock at the end of listing in category pages.

    Is there a way to do it?

    #78161

    Hello,

    The default Woocommerce does not provide such an option and our theme does not have the same either.

    You will need to search for a plugin.

    Best Regards

    #78193

    grapehic
    Participant

    Is there any plugin you know?

    Or is there option to hide out of stock products?

    #78201

    Hello,

    I can hardly recommend a plugin. In order to hide out of stock products, navigate to Woocommerce > Settings > Product > Inventory.

    Best Regards

    #78202

    grapehic
    Participant

    Thank you 🙂

    I’ve found a code to list out of stock products at the end of list:

    /**
    * Sorting out of stock WooCommerce products - Order product collections by stock status, in-stock products first.
    */
    class iWC_Orderby_Stock_Status
    {
    public function __construct()
    {
    // Check if WooCommerce is active
    if (in_array('woocommerce/woocommerce.php', apply_filters('active_plugins', get_option('active_plugins')))) {
    add_filter('posts_clauses', array($this, 'order_by_stock_status'), 2000);
    }
    }
    public function order_by_stock_status($posts_clauses)
    {
    global $wpdb;
    // only change query on WooCommerce loops
    if (is_woocommerce() && (is_shop() || is_product_category() || is_product_tag())) {
    $posts_clauses['join'] .= " INNER JOIN $wpdb->postmeta istockstatus ON ($wpdb->posts.ID = istockstatus.post_id) ";
    $posts_clauses['orderby'] = " istockstatus.meta_value ASC, " . $posts_clauses['orderby'];
    $posts_clauses['where'] = " AND istockstatus.meta_key = '_stock_status' AND istockstatus.meta_value <> '' " . $posts_clauses['where'];
    }
    return $posts_clauses;
    }
    }
    new iWC_Orderby_Stock_Status;
    /**
    * END - Order product collections by stock status, instock products first.
    */
    #78204

    Artem Temos
    Keymaster

    OK, we are glad that you found the solution.

Viewing 6 posts - 1 through 6 (of 6 total)

The topic ‘Out Of Stock Products’ is closed to new replies.