Custom groups not displayed on Send To Groups
-
I am trying to create custom groups based on the value of user meta keys.
My goal is to create groups that will be displayed in the dropdown menu on the Send to Groups page. I followed instructions in docs, but none of of my custom groups are displayed there. I only see the primary wordpress user groups (“administrator”, “subscriber”, etc).
For example, I want to create a group based on the value of the meta key “nycba_positions_held”. (I know that this group has at least 1 recipient)
I used the following code to create the group:
add_action( 'mailusers_group_custom_meta_filter', 'send_to_board_members', 5 ); function send_to_board_members() { mailusers_register_group_custom_meta_filter('Board Members', 'nycba_positions_held', 'board member'); }
I would appreciate any help. Thanks
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Custom groups not displayed on Send To Groups’ is closed to new replies.