Group Type Directory
-
Hi all,
I want to create a dedicated URL for a specific group type to be able to link to the groups in that category as a new directory.
My page is in german, so the general group directory is listed under:
myurl.com/gruppen/I tried various things to see if I could filter by group type, like this:
myurl.com/gruppen/typen/Inspiration
myurl.com/gruppen/typ/Inspiration
myurl.com/groups/types/InspirationNone worked, always got 404.
I have a custom code which sets the “per_page” option already to 50. It looks like:
add_filter('bp_after_has_groups_parse_args', 'wbcom_theme_alter_groups_parse_args'); function wbcom_theme_alter_groups_parse_args($options) { if (bp_is_groups_directory()) { $options['per_page'] = 50; } return $options; }
It works.
And I found that there are a lot more options in class-bp-groups-group.php for BP_Groups_Group::get(), like ‘include’, ‘group_type’, ‘group_type_in’.. so I tried to extend my code from above by:$options['group_type'] = 'Inspiration';
I also tried to use the group-id instead of the “slug”….
None worked…What am I missing?
Any idea?Thanks!
- You must be logged in to reply to this topic.