Hi,
Please take a backup before doing any changes. Users are there by default in WordPress so if you will remove the ultimate member and its extensions then also users will be there. What needs to be managed is if you have any associated data with UM like activities then they certainly will create the issue because BuddyPress has its own activity table and even table for profile field data and all.
I will suggest to set up a staging site first and then test all these things there. Deactivate UM and it’s extensions and then install BuddyPress and check what’s missing there and if there is an extension available in BuddyPress that can do so.
Thanks
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
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.