sdesign
Forum Replies Created
-
Hi,
This isn’t resolved. Here is the screen recording you asked for.
https://synthgroups.com/wp-content/uploads/2022/08/IMG_3158.mov
Thanks
AlexHi, I purchased two extensions today. How do I access the premium support forum? Thanks
Hi, you have taken a screenshot of the “Friends” widget on the front page of the site. This is working fine. The problem I have reported related to the “Youzify Friends Widget” that you can add to the profile through the Youzify plugin settings (see screenshot of settings page below)
Using this widget on the profile page, you can see the issue with the friends avatars. They are not appearing correctly.
https://synthgroups.com/wp-content/uploads/2022/08/Youzify-Friends.png
Any ideas how to fix this?
Hi,
I did a bit of research into this last night and it seems this has been a problem for years. From what I can gather the moderator role is only used to moderate bbpress topics and replies, and has no specific function on the BuddyPress Activity, which, you are right, seems to contradict the Codex.
I did manage to find a snippet that allows both the moderator to delete activity posts from the group wall. I modified this to also allow group admins the same function.
I tested it in my site and it works fine. But it only allows group admins and mods to delete group activity posts, not comments and replies. Could you help me expand on this code to also allow the deleting of comments and replies?
/* Give group moderators the ability to delete activity stream items */ function majecdad_group_mod_delete( $can_delete, $activity ) { if( $activity->component == 'groups' ) { $group_id = $activity->item_id; if( bp_current_user_can( 'bp_moderate' ) || groups_is_user_mod( bp_loggedin_user_id(), $group_id ) ) $can_delete = true; } return $can_delete; } add_filter('bp_activity_user_can_delete', 'majecdad_group_mod_delete', 21, 2 ); /* Give group administrators the ability to delete activity stream items */ function majecdad_group_admin_delete( $can_delete, $activity ) { if( $activity->component == 'groups' ) { $group_id = $activity->item_id; if( bp_current_user_can( 'bp_moderate' ) || groups_is_user_admin( bp_loggedin_user_id(), $group_id ) ) $can_delete = true; } return $can_delete; } add_filter('bp_activity_user_can_delete', 'majecdad_group_admin_delete', 21, 2 );
Buddypress/Youzify doesn’t seem to create Group Admin and Group Moderator user roles in WordPress. The Group Admins and Moderators still appear to be Subscribers.
Even if I change them to Editor User Role they can’t delete other members Activity. It seems only the Site Administrator role cannot delete posts.
I’m really confused about how moderation happens using both (1) the standard WordPress/Buddypress/Youzify system (2) using the Youzify Buddypress Moderation extension? Surely if you are Moderator for a Group you should have more control than a regulator Group Member??
- This reply was modified 2 years, 7 months ago by Steven Stern (sterndata).
- This reply was modified 2 years, 7 months ago by sdesign.
- This reply was modified 2 years, 7 months ago by sdesign.
- This reply was modified 2 years, 7 months ago by sdesign.
Thanks, for now I have added some CSS to move the text input box down so that the reply text doesn’t go under the icons.
okay, thanks. If I buy paid extensions will I have access to PRO support though?
Thanks, makes sense now.
I’ve just used some CSS to hide it on mobile. It’s not really needed on those devices anyway. So I’ve just kept it on desktop.
Thanks, I found the selectors I needed now ??
Thanks, I’ll buy this for sure if the site takes off ??
That’s strange, are you using Safari?
I have to tap about 20 times before I manage to hit the right spot. Once it opens the Emoji selector I can then open and close it easily. My daughter tried on her iPhone 12 and she had the same problem. My wife tried too. So it’s happening here on multiple devices, both iPhone and iPad.
Hi, on further investigation the Emoji seems to be working (on all PHP versions). The problem seems to be that it is very difficult to click the smiley icon in the right place. The clickable area is extremely small on mobile. I found that if I zoom right in I am able to click the link to open the smiley dialogue, but without zooming in it is almost impossible. Is there a way to increase the clickable area with some css? Thanks
- This reply was modified 2 years, 7 months ago by sdesign.
Hi, I have an iPhone 13. iOS 15.5.
Thanks