Replies
Hi Mike,
Thank you for posting.1.It seems you have BuddyPress with MultiBlog mode enabled. MediaPress uses normal WordPress attachment as media file, that means the media files are specific to the sub blogs/sites on the network. I am sorry, but MediaPress does not support having all Media at one site in case of Multi Blog mode.
Also, I noticed that perhaps you are using RT Media/mediaPress both. Please only use one of these.
About Blank White Space:- The space is for listing comments. I am sorry but the current MediaPress does not allow removing it. I will have it fixed in another update. For now, you can use css to fix it.
Hope that helps.
Regards
BrajeshThank you Dandy 🙂
- Brajesh Singh on July 5, 2016 at 9:50 pm in reply to: [Resolved] Add more than 1 Single Member Type #4584
Hi Walter,
Welcome to BuddyDev.
Yes, you can have multiple field but it will not be of any use. The problem is we are syncing actual member type with the field data, so the last field will win and have the user’s member type set as that.Please see the image here
https://i.imgur.com/DJTHtKS.pngPS: BuddyPress does allows user to have multiple member type, but this plugin does not support it.
Hope that clarifies.
- Brajesh Singh on July 5, 2016 at 8:40 pm in reply to: How to use Plugins | BuddyPress Ajax Registration #4582This reply has been marked as private.
Hi Dandy,
Please upgrade to 1.0.3
https://buddydev.com/plugins/bp-extended-user-groups-widget/I have added the last active time as suggested by you.
Thank you
Brajesh- Brajesh Singh on July 5, 2016 at 7:21 pm in reply to: [Resolved] BuddyPress Profile Visibility Manager – #4579
Hi Javier,
Thank you for posting.The problem is when you have enabled it for Admins only, the plugins checks using is_super_admin() function. Since you are on a non multisite WordPress, WordPress checks for ‘delete_users’ capability and if a user has this capability they are assumed super admin, this is why you are seeing it.
To remove the adminbar menu, you can put the following in your above function
global $wp_admin_bar; $wp_admin_bar->remove_node( 'my-account-profile-visibility' );Hope that helps.
Hi Lavish,
Do you have akismet enabled? Some of the spams will be handled by it. Also, I do recommend limit activity posting rate(We have a plugin for that). Setting the limit to say 3 posts per minute is not going to affect normal users but will be a preventing some spam.There are other measures too like using certain parameters( age of registration, no. of friends etc) that can be used but it all depends on the target site. On BuddyDev, we had a lot of message/mention spam, so we disabled mention for non friends(only admins can be mentioned if not friends) and did a few more things to make spammers effort meaningless.
I will suggest first thinking about some criteria and then writing code to make all users adhere to the criteria.
Hi Mike,
Thank you for letting me know. I am happy that you found a solution for now. We are working on collaborative gallery addon and soon MediaPress will have it as a supported feature too.Marking the thread as resolved.
regards
BrajeshThank you for the kind words Nacho. I am glad It is fixed 🙂
- Brajesh Singh on July 5, 2016 at 6:32 pm in reply to: [Resolved] BP Simple Front End Post: Image upload issue for authors #4573
Hi Leo,
I am sorry for not looking at it earlier.Today, I looked at it.
Here is what I did.
1. I registered a custom post type article like thisfunction buddydev_register_post_types() { register_post_type( 'articles', array( 'labels' => array( 'name' => 'Articles', 'singular_name' => 'Article', ), 'public' => true, 'slug' => 'articles', 'supports' => array('title', 'editor', 'thumbnail', 'author'), ) ); } add_action( 'init', 'buddydev_register_post_types' );Then I went to BuddyBlog settings and chose this post type as selected.
After that I tried to upload with Subscriber User account and It worked perfectly.
Note:- I am using latest version of BPSFEP, BuddyBlog, BUddyPress, WordPress and testing it on non multisite.
From the above test, I believe you are using some 3rd party plugin that has been conflicting with permissions and causing it.
Can you please check by disabling a few or replicating on a test server?
Thank you
Brajesh