Skip to content
  • Shop
  • DMCA
  • My account
  • Orders
  • Downloads
  • Contact Us
  • Newsletter

    Sign up for Newsletter

    Signup for our newsletter to get notified about sales and new products. Add any text here or remove it.

    [contact-form-7 id="7042" title="Newsletter Vertical"]
  • Languages
    • You need Polylang or WPML plugin for this to work. You can remove it from Theme Options.
Yerenwg StoreYerenwg Store
  • Menu
    • No products in the cart.

      Return to shop

  • Cart

    No products in the cart.

    Return to shop

  • Shop
  • DMCA
  • My account
  • Orders
  • Downloads
  • Contact Us
    • Contact
    • 08:00 - 17:00
    • +16468288756
Home / WordPress Plugins
  • WooCommerce Zapier Extension, All-in-One Zapier Integration Plugin
  • WooCommerce Product Thumbnail And Gallery Video
Browse
  • .NET
  • Add Ons
  • Advertising
  • After Effects Templates
  • Android
  • Bags
  • Blog Magazine
  • Booking
  • BuddyPress
  • Calendars
  • Category .NET
  • Clothing
    • Hoodies
  • Corporate
  • Creative
  • DaVinci Resolve Templates
  • eCommerce
  • eCommerce
  • Education
  • Entertainment
  • Final Cut Pro Templates
  • Forms
  • Forums
  • Free Download
  • Galleries
  • HTML5
  • Interface Elements
  • iOS
  • Javascript
  • Media
  • Membership
  • Men
    • T-Shirts
  • Miscellaneous
  • Mobile App
  • Mobile Apps
  • Motion Graphic Videos
  • Music
    • Albums
    • Singles
  • Native Web
  • Newsletters
  • Nonprofit
  • Odoo
    • Accounting
    • All In One
    • Books
    • Construction
    • CRM
    • Discuss
    • Document Management
    • Ecommerce
    • Elearning
    • Expenses
    • Extra Tools
    • Free
    • Human Resources
    • Inventory
    • Invoicing
    • Management
    • Manufacturing
    • Medical
    • Point Of Sale
    • Product
    • Projects
    • Purchase
    • Sales
    • Services
    • Themes
    • Uncategorized
    • Website
  • PHP Scripts
  • PHP Scripts
  • Posters
  • Premiere Pro Templates
  • Product Uncategorised
  • Real Estate
  • Retail
  • Scripts & Code
  • Scripts & Presets
  • Scripts & Presets
  • Seo
  • Shoes
  • Site Templates
  • Site Templates
  • Social Networking
  • Special
  • Special
  • Stock Footage
  • Sweaters
  • Technology
  • Utilities
  • Video Effects
  • Wedding
  • Widgets
  • Women
    • Jeans
    • Tops
  • WordPress Plugins
  • WordPress Plugins
  • WordPress Themes
  • WordPress Themes
Recently Viewed
  • Fill The Trucks (Unity Source Code) - 100 Balls - Endless Hypercasual Game Fill The Trucks (Unity Source Code) 100 Balls Endless Hypercasual Game $5.00
  • Cryptocurrency Trading Android + iOS Template | FLUTTER | Coinexchange Cryptocurrency Trading Android + iOS Template | FLUTTER | Coinexchange $12.00
  • Dating App Template in React Native | Match Making App Template | Match Dating App Template in React Native | Match Making App Template | Match $9.00
Add to wishlist
WooCommerce Products Meta Data Filters

WooCommerce Products Meta Data Filters

$3.00

Categories: eCommerce, WordPress Plugins Tags: custom fields filters, eCommerce, woo filters, woo meta filters, woo product filters, woocommerce custom fields filters, woocommerce custom filter, woocommerce filter products, woocommerce filters, woocommerce height filter, woocommerce length filter, woocommerce range filter, woocommerce slider filter, woocommerce weight filter, woocommerce width filter, WordPress Plugins
  • Description

Description

WooCommerce Products Meta Data Filters is a simple but powerful WordPress plugin to filter your WooCommerce products

Filter by product weight, product length, product width, product height, product custom fields, product ACF fields and much more!

Watch the demo

Features

  • No complicated settings page. Simple and easy administration via Widgets.
  • Works out of the box.
  • Auto discovers all default and custom meta keys.
  • You can create unlimited product filters and combine them.
  • Extensible / developer friendly. You can alter the plugin without hacking it, but via WordPress filters and actions.
  • Works on all WooCommerce setups and themes.
  • Easily translatable via .po / .mo files.

Requirements

  • WordPress 4.0+
  • WooCommerce 3.0+
  • PHP 5.4+

Usage

On wp-admin, click on Appearance on the left menu and then on the Widgets submenu. Locate the “Filter products by Meta” widget and add it on the appropriate sidebar

On the widget options fill in the fields depending on your needs

Options
  1. Title: Enter the title of the widget. Most of the times it is placed on the top of the widget as a header.
  2. Label: Put the label of the element you are filtering eg. “Width:”
  3. Meta Key: Select the meta key you want to filter by
  4. Filter type: Select “List” to display all available values of this meta key or “range” to create a slider if you are filtering by a numeric value, eg. the weight of the products
  5. Order options: Select the order of the filter’s values
  6. Order Autorefresh: This will remove the submit button from a “range” filter and will auto submit the filter when it has been changed
  7. You are ready to go! * Save *

For Developers

Some hooks are in place. Please search the code for a full list. Below are some of them with examples.

Filters

You can make the filters display in every page you want. The code below will make them display on every page that has the containing sidebar.

add_filter( 'wmf_display_condition', 'my_wmf_display_condition');
function my_wmf_display_condition( $condition ) {

  return true;
}

You can change the list of the filter types.

add_filter( 'wmf_filter_types', 'my_wmf_filter_types');
function my_wmf_display_condition( $types ) {

  $types['checkbox'] = __( 'Checkbox', 'wmf');

  return $types;
}
Actions

You may add your own behaviour on your filter type

add_action( 'wmf_widget_end', 'my_wmf_widget_end', 10, 7 );
function my_wmf_widget_end( $title, $valueslabel, $metakey, $filtertype, $orderby, $autorefresh, $values_array ) {
  // your code here
}

Frequently Asked Questions

  1. Can I filter by any custom field (meta data)?

    Yes, you can.

  2. How do I add my custom meta data on a product?

    Edit the product in wp-admin. On the top – right corner of the screen, click on “screen options” and make sure that “Custom Fields” is checked. Scroll to the custom fields metabox and add your custom meta data.
    Read more on custom fields

  3. Can I put this anywhere in my site?

    You can put it on any sidebar on your website.

  4. What default fields can I filter by?

    Some of the default filter fields are:

    • weight
    • length
    • width
    • height
    • visibility
    • stock status
    • total sales
    • sales price
    • regular price
    • tax status
    • tax class
    • featured
    • sku
    • reviews count
    • average rating
  5. Can I read the documentation?

    About / Documentation

Changelog

1.0.2 09/12/2019
  • Feature: Added support for float range filters
1.0.1 04/26/2019
  • Fix: Added support for all meta key values
1.0.0 04/24/2019
  • Initial release

Sources and Credits

This plugin uses the following libraries

  • jQuery-ui-Slider-Pips

 

1. All digital products are the most recent version, with no possibility of free updates. After payment, you can request an update to the most recent version for 7 days if a new version is released. Get free support within 7 days.

2. After the purchase is confirmed, download links will be available for 7 days. If a license is required, please contact us via email or ticket for assistance with activation. Our license is only valid for activation and does not include support.

3.mailto:contact We provide Mobile, PHP script installation services for $19.90. Please create a backup after installation as we do not support re-installation. For mobile app source code, we do not offer installation services.

4. If you have any questions, please contact us by email contact@yerenwg.store or create a ticket on this page

5. Please note that any digital products presented on the website do not contain malicious code, viruses or advertising. You will receive the original files from the developers. We do not sell any products that have been downloaded from other websites.

6. The response time can last up to 6 hours.

Related products

PosKing -  Point Of Sale System with Inventory Management | Retail Business ERP
Add to wishlist
Quick View

PosKing Point Of Sale System with Inventory Management | Retail Business ERP

$5.00
Dagas – Jewelry Store WordPress Theme
Add to wishlist
Quick View

Dagas Jewelry Store WordPress Theme

$11.00
Aprin - Custom Print Shop WordPress Theme
Add to wishlist
Quick View

Aprin Custom Print Shop WordPress Theme

$12.00
Jewelshop - Jewelry Responsive Shopify Theme OS 2.0
Add to wishlist
Quick View

Jewelshop Jewelry Responsive Shopify Theme OS 2.0

$20.00
GOMAX - Elementor WooCommerce WordPress Theme
Add to wishlist
Quick View

GOMAX Elementor WooCommerce WordPress Theme

$5.00
Suppre - Urban Wear WooCommerce Theme
Add to wishlist
Quick View

Suppre Urban Wear WooCommerce Theme

$14.00
Xtore | Modern Multipurpose Opencart 4 Theme
Add to wishlist
Quick View

Xtore | Modern Multipurpose Opencart 4 Theme

$9.00
Beautifo - Beauty Cosmetics Shop WooCommerce WordPress Theme
Add to wishlist
Quick View

Beautifo Beauty Cosmetics Shop WooCommerce WordPress Theme

$11.00
yerenwg.
yerenwg.
My Account
  • My Orders
  • My Downloads
  • My Account details
Useful Links
  • Contact Us
  • Terms of Service
  • DMCA
TOS (important Section)

All images and trademarks used on this website belong to their respective owners. We do not sell copyrighted works; we only provide access to temporary downloads or temporary use based on agreements with the owners. The images are intended for educational purposes only. Processing times may vary from 1 minute to 24 hours maximum on office days.

  • About
  • Blog
  • Contact
  • FAQ
Copyright 2025 © YERENWG
  • Shop
  • DMCA
  • My account
  • Orders
  • Downloads
  • Contact Us
  • Newsletter

Login

Lost your password?

Register

Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our privacy policy.