Replies
- Brajesh Singh on September 30, 2020 at 8:04 am in reply to: [Resolved] Branded Login – Email in english #33588
Hi Johan,
I am sorry for the inconvenience. I am not aware of the issue. Can you please disable the plugin temporarily and check?I am assuming that you have localized the messages?
Regards
Brajesh - Brajesh Singh on September 29, 2020 at 7:58 pm in reply to: Paid Memberships Pro Restrictions is not restricting the uploads #33581
Hi Quintin,
Thank you for the patience.I have tested it now. The plugin works as expected if a user has one of the Paid Membership Level assigned and the level restrict the limit.
Please make sure you are testing upload with a user account which has the paid membership pro level assigned.
Here is a screenshot showing it in action(I had set 1 gallery, 3 media).
https://i.imgur.com/clnXiLp.pngIf the user does not have a Paid Membership Pro level assigned, It will not restrict them.
Please check.
Regards
Brajesh - Brajesh Singh on September 29, 2020 at 7:39 pm in reply to: [Resolved] Is "BP Non Editable Profile Fields" intended to work with BuddyBoss? #33580
Hi Jakob,
Thank you for the question.we haven’t tested the plugin with BuddyBoss. I am guessing that it might have issue with their repeatable profile field. Other’s should work fine.
Will ask one of my colleague to check and report here tomorrow.
Regards
Brajesh - Brajesh Singh on September 29, 2020 at 7:36 pm in reply to: How get I get the total activity count of a user #33576
Thank you for confirming.
Regards
Brajesh - Brajesh Singh on September 29, 2020 at 7:33 pm in reply to: [Resolved] Add group creation button in profil group tab. #33575
Thank you for sharing the css.
Regards
Brajesh - Brajesh Singh on September 29, 2020 at 7:33 pm in reply to: [Resolved] Limit Characters in BuddyPress Activity Post #33574
- Brajesh Singh on September 29, 2020 at 6:26 am in reply to: fix the buddypress profile cover image responsive issue #33564
Hi,
Thank you for the question.the examples you gave, both uses css to achieve it. They do not produce any resized version(as of now) and use only one image for all screen size. The do use css to resize it.
The correct css depends on your theme and item header. I will suggest looking into css media query.
Regards
Brajesh That’s good to know. As explained earlier, there is no solution for it currently.
Regards
Brajesh- Brajesh Singh on September 29, 2020 at 6:24 am in reply to: [Resolved] wcfm marketplace plugin with buddypress (store sidebar info) #33562
Hi,
Thank you for the topic.At the moment, we are not using the WCFM plugin, so can not assist you with it. Please contact the relevant plugin author for the same.
Regards
Brajesh - Brajesh Singh on September 29, 2020 at 6:23 am in reply to: [Resolved] Limit Characters in BuddyPress Activity Post #33561
Sure,
Here you go./** * Changes length of activity excerpt. * * @param int $length_in_chars number of character for the excerpt. * * @return int */ function buddydev_custom_activity_excerpt_length( $length_in_chars ) { $length_in_chars = 20;// change it to as many characters as you want. return $length_in_chars; } add_filter( 'bp_activity_excerpt_length', 'buddydev_custom_activity_excerpt_length', 100 );Please feel free to change the number of characters.
Regards
Brajesh