08/15/2017 at 10:46 am
#432358
Keymaster
@ Mike
I’m assuming this is in relation to the Form extension? Is so and I understand correctly the following filter should do what you want:
add_filter( 'cnf_shortcode_atts', 'cnf_group_by_parent' );
function cnf_group_by_parent( $atts ) {
$atts['parent_category_group'] = TRUE;
return $atts;
}
Use the Code Snippets plugin to add this filter. Hope this helps, let me know.
