This is simply a list of product rules related filter hooks found within the WooCommerce Table Rate Shipping files. This list also includes the supported parameters and example codes.
wtars_shipped_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( 'wtars_shipped_admin/get-product-filter-groups', 'custom_get_product_filter_groups', 10, 2 );
wtars_shipped_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( 'wtars_shipped_admin/get-group_type_id-group-product-filters', 'custom_get_group_type_id_group_product_filters', 10, 2 );
wtars_shipped_admin/get-{filter_type_id}-product-filter-fields
- Parameters:
- $in_fields array()
- $args array()
Example Codes:
function custom_get_filter_type_id_product_filter_fields( $in_fields, $args ) { //add your custom code here return $in_fields; } add_filter( 'wtars_shipped_admin/get-filter_type_id-product-filter-fields', 'custom_get_filter_type_id_product_filter_fields', 10, 2 );
wtars_shipped/validate-{filter_type_id}-fitler
- Parameters:
- $filter_args array()
- $package_item array()
- $data array()
Example Codes:
function custom_validate_filter_type_id_fitler( $filter_args, $package_item, $data ) { //add your custom code here return true; // true or false } add_filter( 'wtars_shipped/validate-filter_type_id-fitler', 'custom_validate_filter_type_id_fitler', 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
Feedback sent
We appreciate your effort and will try to fix the article