Replies
- Brajesh Singh on June 23, 2020 at 6:12 am in reply to: Private Message Rate Limiter – Rate Limit User Activity #31192
Hi Arnobio,
The private message restrictions plugin will be available publicly in next couple of days. @ravisharma is doing a pre-release testing and we were planning to push it for July. We can make it early too.For general Restrictions plugin, I do not have and ETA. Our old work that I might have shared some screenshots, did not seem good enough. We have abandoned that. The new development is going through the planning phase again. I am unable to set an ETA for that currently.
Do you need a solution for Role based activity restrictions?
Regards
Brajesh - Brajesh Singh on June 23, 2020 at 6:00 am in reply to: [Resolved] Match Folder names to users and albums via SQL #31191
Hi,
Thank you for the question.Here is a query that will list user name, directory_path
SELECT user_login, CONCAT( "wp-content/uploads/mediapress/members/", ID) FROM wp_usersPlease change wp_users to your users table name.
Here is a query that lists user, user_gallery and user_gallery path
SELECT user_login, CONCAT( user_login, "/" , post_title) as user_gallery, CONCAT( "wp-content/uploads/mediapress/members/", wp_users.ID, "/", wp_posts.ID ) as user_gallery_path FROM wp_posts, wp_users WHERE post_author=wp_users.ID AND post_type="mpp-gallery" AND post_status="publish"Please make sure to change wp_posts & wp_users with the correct table name(you might have a different prefix than wp).
Here is how it should look.
https://i.imgur.com/oYCsk3s.png
Hope that helps.
Regards
Brajesh - This reply has been marked as private.
No issues. You are welcome.
- Brajesh Singh on June 22, 2020 at 6:53 pm in reply to: Post Type Video – no display of the video in the news overview #31174
Hi Maurice,
Welcome to BuddyDev forums.Please help me understand the issue by sharing the following details:-
1. Which plugin are you using, BuddyPress or BuddyBoss?
2. Are you posting from activity screen(newsfeed) or from Gallery screen?
3. Are you uploading video or is it a video link?
4. Which theme and template pack are you using?
Please let me know and I will assist.
Regards
Brajesh - Brajesh Singh on June 22, 2020 at 6:36 pm in reply to: [Resolved] BuddyPress Anonymous Activity not show #31173
You are welcome.
Hi Carsten,
I am glad you solved it.My suggestion for future is to take a look at the template pack code. That will give you better insight and help in solving many issues.
Regards
BrajeshHi JJ,
I am sorry, It is not supported.BudyPress does not allow us to order activities randomly(out of the box), so using order by is not an option.
If we do use a random page feature, we will need to calculate number of available pages and then do it on our own.
Regards
BrajeshHi Carsten,
When I say template override, It means copying the specific template to your theme/child theme form the BuddyPress template pack and modifying as you please.That way you get more flexibility.
Regards
Brajesh