Forum Replies Created
-
Edit:
Deactivating all plugins but Buddypress doesn’t help.Hi Brajesh
I found the culprit.
When I deactivate the plugin “BuddyPress Group Email Subscription” response time is reduced from >10 sec to around 3 seconds.
I will report it to them. Thanks for helping out.Lars
Thanks, Brajesh. Found it and unchecked the box.
But there is still approximately 10 seconds from ‘send’ to appearance in the stream.
When I delete an activity post, the response time is <1 second.
Hi Brajesh,
Thank you for answering.
Yes, I have. I checked the settings, but there’s no way to exclude BP-activity?Lars
Hi Georgio – nice work. Following this topic.
Nice improvement to be able to add images to activity posts. Would be great with a ‘sticky post’ button as well. I hope someone will help with this.Cheers, Lars
Yes, I think it looks OK now.
I hid the labels ‘username’ and password’ to save space for the input fields. I would like to add theses labels as placeholder text to them, though – some users might be confused by seeing two empty boxes.
Is there any way I could do that, without editing the widget code?
Thanks,
LarsThanks @iamthewebb, your hint helped me in the right direction.
You are right, it doesn’t look so well on a mobile device. How can I fix that?
Cheers, Lars
I have the same probem.
Autoptimize is not the culprit.
Latest WP and BP. My host is WP Engine.
Using Nouveau it looks like I could edit
<?php bp_nouveau_signup_form(); ?>and add some simple <br/> between form elements, but I cant locate the code with the signup form?
Bump – does anyone know how to fix css on register page? – align boxes, maybe spice them up a bit?
I use and recommend Buddypress Registrations options.
Me too, @patjk.
Did you manage to create a reading community with buddypress?
I can recommend this review block for Gutenberg . It is not buddypress, though. But if you allow your WP users to be authors, then they can easily write reviews.
Cheers
Thank you for helping me, Prashant Singh.
I tried this on my on my staging site,
add_filter('bp_core_signup_send_validation_email_message','ps_user_data_to_email',10,2); function ps_user_data_to_email( $msg, $user_id ) { $user = get_user_by( 'id', $user_id ); if(!empty($user)) $data1 = xprofile_get_field_data('Navn',$user->ID); echo 'Navn'. ' : '.$data1; $data2 = xprofile_get_field_data('Postnr._og_by',$user->ID); echo 'Adresse 2'. ' : '.$data2; }but the ‘new user email’ stays the same – username and email included and nothing else.
Is the syntax wrong? I just replaced spaces with ‘_’ in field names. Is ‘.’ allowed? (data2)Cheers
Thanks for answering, but there are no tokens for custom xprofile fields?
+1 – I would like this possibility too.
+1 – I see the same issue, FYI. I use the BP registrations options-plugin.
Thanks for your work with BP.
I have the same problem.
Look in the right column of my register pageWhen I change to Twenty Seventeen the duplicates disappear, though. Can you confirm, @aubreyw?
I use a child theme of GeneratePress. How can we correct this duplicate issue in our themes?
+1 for this question .
Would be nice if a user profile could contain more than 1 email address…Hi
#2, Buddypress Registration Options is doing the job for me.
Thank you @danbp, works like a charm!
Lars
+1 on this.
It would be better to have profile details displayed below and not next to account details to make mobile registration look better.
Has anyone found a solution to this?
Thanks,
Lars
One solution might be to simply display the xprofile fields, that you want to be searcable in the member directory.
Then you can simply use the member search form to search for xprofile content.My members have a field with ‘school’ http://historielaerer.dk/medlemmer/
This snippet adds two profile fields to the members loop – add the code to your bp-custom.php:
<?php function add_info_to_members_loop() { $field_content = bp_get_member_profile_data( 'field=(Xprofile Field name)' ); if( $field_content != false ) echo "(label for xprofile field content): " . $field_content; $field_content = bp_get_member_profile_data( 'field=(Xprofile field name #2' ); if( $field_content != false ) echo "<br/>" . $field_content; } add_action( 'bp_directory_members_item', 'add_info_to_members_loop' ); ?>Just an idea.
Kind regards, Lars
The defer%20onload is a sign that you might be using a plugin to do something to all WordPress javascript enqueued files.
Sorry, I disabled a code snippet that defers javascript – that solved the problem.