Kash
Forum Replies Created
- AuthorPosts
- KashParticipant
Thank you!
KashParticipantI’m not a member of both groups, however I’ve been working around that limitation by using this code in my functions.php. It was working until the latest update:
// Allow front end messages pro users to send messages to group they are not in
add_filter( ‘fep_get_user_groups’, function( $user_groups, $user_id ){
$groups = fep_get_option(‘gm_groups’, array());
if( $groups && is_array( $groups) ){
foreach ( $groups as $group ) {
$user_groups[ $group[‘slug’] ] = $group[‘name’];
}
}
return $user_groups;
}, 10, 2);KashParticipantThank you, I didn’t notice that.
But I’m still having an issue where I have 2 groups defined in the backend, however only 1 group is showing up on the front end (see screenshots attached).
This issue only started with the latest update.
Thanks.
Attachments:You must be logged in to view attached files.KashParticipantI ended up using the WPCrontrol Plugin, but I’d still like to know if this is something that can be set in the FEP Settings?
Thanks.
KashParticipantThank you, and sorry…my mistake. Clearing my cache fixed it.
KashParticipantThank you for the response. For some reason, it doesn’t work. I always switch to visual mode, but the next time always comes back to text mode. This only happens in FEP. If I write a post, I get the Visual mode by default.
- AuthorPosts