Replies
- Brajesh Singh on December 18, 2017 at 5:34 pm in reply to: [Resolved] Media Moderator not showing…? #12455
Hi Richard,
Thank you. We will be pushing an update by 20th for the same.Thank you
Brajesh - Brajesh Singh on December 18, 2017 at 1:03 pm in reply to: plugin compatibility issue BP Reactions & Facebook Like User Activity Stream #12449
Hi Laz,
Thank you for reporting.Please allow us to test it today and we will get back to you with a solution.
Regards
Brajesh - Brajesh Singh on December 18, 2017 at 12:54 pm in reply to: [Resolved] buddypress activity, like and comment email notifications not working #12448
Hi Junk,
Welcome to BudsdyDev forums.Here is a plugin that adds local notification for all the actions you have mentioned above.
https://github.com/sbrajesh/bp-activity-comment-notifier
You may adopt/extend it to send email.
Hope that helps.
Regards
Brajesh - Brajesh Singh on December 18, 2017 at 12:47 pm in reply to: [Resolved] Global setting for spacing between sections #12446
Thank you for marking it as resolved.
Closing as per the email.Regards
Brajesh - Brajesh Singh on December 18, 2017 at 12:46 pm in reply to: [Resolved] getting started with forums #12445
Hi Shelly,
Thank you for posting.
Community Builder theme does not have anything specific for the forum. The Forum is provided by bbPress and integrated with BuddyPress.You may find this guide helpful.
https://codex.buddypress.org/getting-started/installing-group-and-sitewide-forums/Regards
Brajesh Hi Shelley,
Member Directory is a feature of BuddyPress. It lists all members of your site and acts as a public listing of members.To create a member directory, Please visit Dashboard->Settings->BuddyPress->Pages Tab and make sure a Page is assigned to Members component. That Page will act as your member directory.
Regards
BrajeshHi Shelley,
You are logged in that’s why BuddyPress is redirecting you to home page.Please open the page in another browser or incognito ode where you are not logged in. I am able to see your registration page. Please make sure to select “Single Column” layout as the current layout has very tiny and broken sidebar on the site.
Regards
Brajesh- Brajesh Singh on December 18, 2017 at 12:38 pm in reply to: [Resolved] BuddyPress Simple Front End Post Warnings In Code #12441
Thank you for updating. We will add some check in future for bad settings. At the moment, if the setting is incorrect it throws the notice. Saving BuddyBlog settings fixes it for that form.
Regards
Brajesh - Brajesh Singh on December 18, 2017 at 12:37 pm in reply to: [Resolved] MediaPress and BuddyPress Activity as Wire upload buttons for non admin user #12440
Hi Laz,
This needs extra code to grant the visiting user permission to upload.You can use the following code in bp-custom.php
https://gist.github.com/sbrajesh/74fff2969e2aa297f88b29bb4974bc2bIn our next wire update(Good news is we are pushing it on wp.org this week), we will have the code included.
Thank you
Brajesh - Brajesh Singh on December 18, 2017 at 12:35 pm in reply to: [Resolved] BuddyPress Activity as Wire & community theme wording #12439
Hi Laz,
You are correct about it. In the activity as wire, we are filtering on “What’s new, %s?” and checking that the text domain is ‘buddypress’. It will not work with Community Builder as the textdomain is ‘community-builder’.I will update activity as wire to remove checking for the textdomain. For now, you may change thi line
https://github.com/sbrajesh/bp-activity-as-wire/blob/master/bp-activity-as-wire.php#L58
from
if ( $text == "What's new, %s?" && $domain == 'buddypress' && ! bp_is_my_profile() && bp_is_user() ) { $translated_text = sprintf( __( "Write something to %s?", 'buddypress' ), bp_get_displayed_user_fullname() ); }to
if ( $text == "What's new, %s?" && ! bp_is_my_profile() && bp_is_user() ) { $translated_text = sprintf( __( "Write something to %s?", 'buddypress' ), bp_get_displayed_user_fullname() ); }Thank you
Brajesh