Show unused "job specification items" #31
-
Hi, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi Sorry for the delay in response. By default, only specification options (terms) attached to jobs are only shown in the filters. So to also show these empty terms, you can use the awsm_filter_spec_terms_args filter hook to modify the default arguments. function awsm_filter_spec_terms_custom_args( $terms_args ) {
$terms_args['hide_empty'] = false;
return $terms_args;
}
add_filter( 'awsm_filter_spec_terms_args', 'awsm_filter_spec_terms_custom_args' ); |
Beta Was this translation helpful? Give feedback.
Hi
Sorry for the delay in response.
By default, only specification options (terms) attached to jobs are only shown in the filters. So to also show these empty terms, you can use the awsm_filter_spec_terms_args filter hook to modify the default arguments.