Hi,
Please check in BuddyPress settings if comments are enabled like this: https://prnt.sc/l6gojt
Thanks
Is this normal or should i be landing on the page where you compose a message towards said user like any other website?
No, this is not normal. It’s a bug.
There’s a fix for the next version, but it hasn’t been released yet:
https://buddypress.trac.wordpress.org/ticket/7908#comment:10
Hi there,
Im trying to replace my old membership plugin with buddypress.
The problem is I have about 10 websites working with polylang and I understand there is a big problem buddypress working with polylang.
I dont mind having emails with both languages and the relevant registration pages also in both languages but are there any helpful hints how to integrate both?
Thank you and best regards,
Harald
Default and vanilla install of both latest stable WP and Buddypress with no other new plugin installed, just all default themes, nothing else. Creating a new blog post ( as admin or any user ) – expecting to see comment button or box in the Activity stream under the blog title (and excerpt) – but seeing only Favorit / Delete buttons but no Comment button. Many thanks for posting a solution.
Hi,
Have you tried disabling plugins except buddypress? Also check once with the default theme like twentyseventeen(if not done).
Thanks
Hi,
Please check this thread: https://buddypress.org/support/topic/activity-loop-filtering-multiple-or-excluding-filter/
The code given there will only output these activities:
'activity_update',
'activity_comment',
'new_blog_post',
'new_blog_comment',
'friendship_created',
'created_group',
and rest will be excluded from the activity stream.
Thanks
I checked this out already. This plugin does not map “Date-of-Birth” and “Gender” fields of Buddypress.
Is there anyway to prevent buddypress from removing wp_classes? It’s preventing me from using my theme customizer
Hi,
When activating the new buddypress version 3.2.0 it overrides my website bodyclass with it’s own
class=”bp-nouveau js”
Which causes a lot of conflicts for me.
When buddypress plugin is disabled the problem is solved and I get back my default bodyclass
class=”post-template-default single single-post postid-1 single-format-standard”
How can I solve this?
Hi,
Please check this plugin: https://wordpress.org/plugins/wordpress-social-login/
It is now integrated with BuddyPress that you can see in the documentation as well:
http://miled.github.io/wordpress-social-login/buddypress.html
Thanks
For the activation and welcome messages you can find them in Email menu in dashboard. Find the one that you want to edit and add your text there and then test.
If wants to do it with code then please check this https://websistent.com/custom-buddypress-activation-email/
Same for the translation. You can change the content there in the Email menu.
Please see: https://prnt.sc/l5n76g
Thanks
I’m working on a WordPress Multisite installation and I need all of the sites to have the same configuration (themes, plugins, settings, etc.). I’m using BuddyPress on all of the sites and I want them all to have the same components activated. Currently I’m using Ansible to provision everything and make some calls to the WP CLI, one of which runs a PHP script that is supposed to save the BuddyPress settings, along with settings for other plugins. The script seems to run fine; I update bp-active-components and I run bp_core_install() and pass the components to it to create all the necessary tables. However, when I go to a site and visit wp-admin, the active components get reset to the default components. I’m guessing there is an action somewhere that runs when I visit wp-admin or the BuddyPress settings page for the first time. Where is this happening and can I turn it off? Or what would be the best course of action for achieving what I am trying to do?
Tech specs:
WordPress 4.9.5, using multisite
BP Multi-network 1.0.1, network-activated
BuddyPress 2.9.4
bbPress 2.5.14, network-activated
Custom theme
Running inside a vagrant box using CentOS 6
P.S. I am probably using a bunch of outdated stuff but I inherited this project from another team
No when I activite the rtMedia for WordPress, BuddyPress and bbPress plugin
Hi,
This is not BuddyPress plugin but please see: https://wordpress.org/plugins/advanced-classifieds-and-directory-pro/
You can use this plugin https://wordpress.org/plugins/wc4bp/ to manage accounts and all through profile. But for this you have to use woocommerce to sell things.
Thanks
Hi,
Please try this snippet:
function ps_setup_nav() {
global $bp;
bp_core_new_nav_item( array(
'name' => __( 'My Account', 'buddypress' ),
'slug' => 'my-account',
'position' => 30,
'screen_function' => 'ps_account_page',
) );
}
add_action( 'bp_setup_nav', 'ps_setup_nav' );
function ps_account_page() {
add_action( 'bp_template_content', 'ps_account_content' );
bp_core_load_template( apply_filters( 'bp_core_template_plugin', 'members/single/plugins' ) );
}
function ps_account_content(){
echo do_shortcode('[woocommerce_my_account]'); // If you are using WooCommerce otherwise can write your content instead of thus
}
Hopefully, it will help you.
Thanks
Which template pack of BuddyPress you are using? You can override edit.php and then after submit/save button add your HTML.
Thanks
Hello, I searched existing posts but didn’t find this exact question.
On the members’ page, and on individual profile pages, it shows the time the member was last active. (example ‘active 3 minutes ago’)
I’d like to hide/turn this off but can’t figure out where or how to do this. I have turned off the activity stream but that didn’t do it.
Is there a snippet of code I need to change or add to accomplish this?
I changed the theme to twenty-seventeen and it still shows up.
Wordpress version 4.9.8
BuddyPress version 3.2.0
This will (temporarily) take you directly to the member ( ‘Connect’ ) page.
Thank you!
Denise
I checked the script in xdebug in phpstorm, all the necessary scripts are registered, the variables have values, the only problem on the wp_footer hook is not the add_action function (‘wp_footer’, ‘gglcptch_add_scripts’); which connects scripts to the buddypress comment form page.
Thanks.
Template pack nouveau displays a comment form using ajax. The function in which the necessary scripts are registered in the new template pack is called using ajax. In the old template pack legacy, the output of the comment form on the page was done without ajax. It seems to me that (js)scripts are not connected to the page for this reason. Please share your opinion on this. thank
I am having the same problem but I received this error in the console:
Uncaught TypeError: Cannot read property ‘strings’ of undefined
bp.Views.WhatsNew = bp.View.extend({
tagName: “textarea”,
className: “bp-suggestions”,
id: “whats-new”,
attributes: {
name: “whats-new”,
cols: “50”,
rows: “4”,
placeholder: BP_Nouveau.activity.strings.whatsnewPlaceholder, <<———
“aria-label”: BP_Nouveau.activity.strings.whatsnewLabel
},
this is in the buddypress-activity-post-form.js file
Hope that helps.
Did you try just removing the calls to the nav from the template ?
Since you mention ‘Member primary navigation’, I’ll assume you are working the bp-legacy templates.
Open buddypress\bp-templates\bp-legacy\buddypress\members\single\home.php
Remove: bp_get_displayed_user_nav();
And perhaps: do_action( 'bp_member_options_nav' );