Product Rules - Filter Hook References

Modified on Thu, 09 Feb 2023 at 11:48 PM

This is simply a list of product rule-related filter hooks included in the WooCommerce Catalog Mode - Pricing, Enquiry Forms & Promotions files. This list also includes the supported parameters and example codes.


wmodes-admin/get-product-filter-groups

  • Parameters:
  • $group_types array()
  • $args array()


Example Codes:

function custom_get_product_filter_groups( $group_types, $args ) {

    //add your custom code here
    return $group_types;
}

add_filter( 'wmodes-admin/get-product-filter-groups', 'custom_get_product_filter_groups', 10, 2 );

wmodes-admin/get-{group_type_id}-group-product-filters

  • Parameters:
  • $filter_types array()
  • $args array()


Example Codes:

function custom_get_group_type_id_group_product_filters( $filter_types, $args ) {

    //add your custom code here
    return $filter_types;
}

add_filter( 'wmodes-admin/get-{group_type_id}-group-product-filters', 'custom_get_group_type_id_group_product_filters', 10, 2 );

wmodes-admin/get-{filter_type_id}-product-filter-fields

  • Parameters:
  • $fields array()
  • $args array()


Example Codes:

function custom_get_filter_type_id_product_filter_fields( $fields, $args ) {

    //add your custom code here
    return $fields;
}

add_filter( 'wmodes-admin/get-{filter_type_id}-product-filter-fields', 'custom_get_filter_type_id_product_filter_fields', 10, 2 );

wmodes/validate-product

  • Parameters:
  • $is_valid bool
  • $filter_args array()
  • $data array()


Example Codes:

function custom_validate_product( $is_valid, $filter_args, $data ) {

    //add your custom code here
    return true; // returns true or false
}

add_filter( 'wmodes/validate-product', 'custom_validate_product', 10, 3 );

Was this article helpful?

That’s Great!

Thank you for your feedback

Sorry! We couldn't be helpful

Thank you for your feedback

Let us know how can we improve this article!

Select atleast one of the reasons

Feedback sent

We appreciate your effort and will try to fix the article