-
Henry Wright replied to the topic Welcome email not firing off for accounts created by social media login in the forum How-to & Troubleshooting 9 years, 4 months ago
Are you using a social media plugin to create accounts? That plugin will likely have a hook you can use. If not then you should be able to request one be added
-
Fugu Design started the topic How to init BP before visit admin in the forum Installing BuddyPress 9 years, 4 months ago
Hi,
I’m writing a WordPress/Buddypress installation script in bash with wp-cli.
The script installs a few plugins including buddypress.
After installing the plugins, the script needs to get the buddypress pages ids (activity, members, register…), but it seems that they are created only when the site admin logs in for the first time.
Is there a w…[Read more] -
Henry Wright replied to the topic Users can't join group in the forum How-to & Troubleshooting 9 years, 4 months ago
It’s possible that either a plugin or your theme is conflicting. If the problem has just started happening, try checking what you’ve done recently (added new plugins, changed or upgraded your theme etc)
-
Henry Wright replied to the topic Users can't join group in the forum How-to & Troubleshooting 9 years, 4 months ago
Can you provide a list of the plugins you’re using? Also which theme?
-
Red Sand Media Group replied to the topic Need Advice for Stopping Spam at the Gate in the forum How-to & Troubleshooting 9 years, 4 months ago
Hi @djsteveb:
Thanks for the awesome feedback! We always want to improve the plugin. If you could contact us via our support form, it would allow us to look into that. With a little modification on our end we should be able to auto-detect, and make it so no one has to tweak any settings.
– Scott
-
The API Guys replied to the topic Custom Member Tab in the forum Creating & Extending 9 years, 4 months ago
Starting point is https://codex.buddypress.org/developer/function-examples/core/bp_core_new_nav_item/
But adding a full function looks like:
/**
* adds the profile user nav link
*/
add_action( 'bp_setup_nav', 'add_calendar_2_bp_nav_item' );
function add_calendar_2_bp_nav_item() {
global $bp;$args = array(
'name' => __( 'Calendar',…[Read more] -
Red Sand Media Group replied to the topic Need Advice for Stopping Spam at the Gate in the forum How-to & Troubleshooting 9 years, 4 months ago
WP-SpamShield will take care of all of that for you. 🙂
Full disclosure: I’m the developer.
-
The API Guys replied to the topic change bp from activated to network activated in the forum How-to & Troubleshooting 9 years, 4 months ago
Why do you say you should have network-activated BuddyPress?
-
The API Guys replied to the topic Get rid of Activity Tab on Member Profile in the forum Installing BuddyPress 9 years, 4 months ago
I think you’ll want something like this:
add_action( 'bp_actions', 'remove_members_activity_tab', 5 );
function remove_members_activity_tab() {
global $bp;
bp_core_remove_nav_item( 'activity' );
}which should remove the tab, but it’ll also remove the whole navigation if Activity is set as the default. To make sure that doesn’t happen, add…[Read more]
-
Georgio started the topic Enable/disable custom group tabs in the forum Creating & Extending 9 years, 4 months ago
Hi
I created a group tab using one of the examples on this page but I don’t know how to enable/disable this tab at will. Any help? -
Sadegh Hosseini replied to the topic How can I insert link with target in description? in the forum How-to & Troubleshooting 9 years, 4 months ago
Thanks a lot 🙂
-
Sadegh Hosseini replied to the topic How can I insert link with target in description? in the forum How-to & Troubleshooting 9 years, 4 months ago
Thanks for your quick answer.
Will you please tell me is this harmful to security if I allow HTML in description?
As it’s not allowed by default. -
Sadegh Hosseini started the topic How can I insert link with target in description? in the forum How-to & Troubleshooting 9 years, 4 months ago
Hi,
Please tell me is there any way to insert link with target(_blank) in description section of buddypress field(bp_the_profile_field_description)?
When I add target to link and click on update button, the target section will be removed.
Thanks -
Henry Wright replied to the topic Change URL of member profiles to /@username in the forum Showcase 9 years, 4 months ago
You can easily configure BuddyPress to use root profiles which will mean URLs look like example.com/username. Note though, there’d be no @ character in the URL.
See the Advanced Configurations section here: https://codex.buddypress.org/getting-started/customizing/changing-internal-configuration-settings/
-
Christian replied to the topic Non-members can see child forums in groups in the forum How-to & Troubleshooting 9 years, 4 months ago
I have the same bug, using BP 2.7.4.
-
Kaushalya Consultants's profile was updated 9 years, 4 months ago
-
Christian replied to the topic Posts in private forums of a group are visible for non-members in the forum How-to & Troubleshooting 9 years, 4 months ago
Does anybody use bbpress in private bp-groups with this phenomenom?
Thanks for your reactions.
-
Bunty replied to the topic Page redirecting to Homepage in the forum Miscellaneous 9 years, 4 months ago
Try re-saving permalinks after login.
-
@mercime replied to the topic Page redirecting to Homepage in the forum Miscellaneous 9 years, 4 months ago
> Buddypress registration page redirrecting to homepage
@sholis You need to log out first. -
Alex Stine started the topic User Meta Output On Profile in the forum Creating & Extending 9 years, 4 months ago
Hello,
I have a custom user meta field which is a staff label field. For people with “staff” capability, they can go to their profile in WP admin and enter some text for a label such as “Lead Developer, Writer, Support, etc. I would like to output this label on BBPress profile but cannot figure out how to do it. I am using the currently displ…[Read more] - Load More