BuddyBoss Home – Web › Support Forums › Themes › Boss. theme › Double profile details at registration page after latest update
Tagged: double profile registration
- This topic has 22 replies, 8 contibutors, and was last updated 8 years, 11 months ago by Anonymous.
Question
November 5, 2015 at 2:49 am #50678@ericdear team,
i just noticed that on the registration page the section with extended profile information for buddypress is posted/visible twice (see attached screenshot).
i am sure i did not have this issue before the 2.0.0 update.(deleted all caches and also tried from different machines and browsers)
can you please check?
tnx, ericAnswers
November 5, 2015 at 3:19 am #50683@
AnonymousHi @eric, Sorry for inconvenience
It is a high priority task in our todo listSorry i am making a suggestion to edit core file for quick fix
you can edit
boss/buddyboss-inc/buddyboss-framework/options-init.php
line 1278
modify following functionpublic function boss_customizer_xprofile_field_choices() { $options = array(); if ( function_exists( 'bp_is_active' ) ) { if ( bp_is_active( 'xprofile' ) && bp_has_profile( array( 'user_id' => get_current_user_id(), 'hide_empty_groups' => false, 'hide_empty_fields' => false ) ) ) { while ( bp_profile_groups() ) { bp_the_profile_group(); $fields = array(); while ( bp_profile_fields() ) { bp_the_profile_field(); $fields[ bp_get_the_profile_field_id() ] = bp_get_the_profile_field_name(); } global $profile_template; if( $profile_template->group_count > 1 ){ $options[bp_get_the_profile_group_name()] = $fields; } else { //no need to show 'optgroup' is there is only one xprofiel field group foreach( $fields as $k=>$l ){ $options[$k] = $l; } } } } } return $options; }
with
public function boss_customizer_xprofile_field_choices() { $options = array(); return $options; }
Regards
Varun DubeyNovember 5, 2015 at 3:40 am #50694@ericthanks, seems to work.
br, eric
November 5, 2015 at 3:54 am #50702@
AnonymousHi @eric
I will notify you when it get fixed
Regards
Varun DubeyNovember 5, 2015 at 5:22 am #50709@noodweerbe@vapvarun, some things to do in a next release i see (hopefully soon). Thanks for the hard work.
November 14, 2015 at 12:33 pm #51688@mln83@vapvarun do we still need to include this code in Boss 2.0.4?
It seems like the double name tag bug is still present in Boss 2.0.4?
Best regards,
MichaelNovember 16, 2015 at 8:40 am #51822@
AnonymousHi @mln83, It is fixed in our current updated version..you do not have to use above code in current version.
It working fine now, if you are still getting this issue so please send us your site’s details at [email protected] our developers will check that.
Regards
PallaviNovember 18, 2015 at 12:40 pm #52072@eric@pallavi @vapvarun no, not on my site, bug still present at 2.0.4 🙁
@mln83 does it work on your site?November 18, 2015 at 12:42 pm #52074@mln83November 18, 2015 at 1:39 pm #52079@
AnonymousSorry for the inconvenience.
It is getting little bit hard to replicate this issue. I have worked on this one with other developers several days to get root of the issue but not sure about real cause.
If your are still getting issue, Please PM your login details we just need to cross check all configuration and active plugins to replicate the issue.
The code which we are removing to fix this issue, they are just simple code to get profile fields for cover image, not sure why they are duplicating the profile fields.
Regards
Varun DubeyNovember 18, 2015 at 3:54 pm #52109@sportsmockery@vapvarun I am on current version and still get the repeat as well.
November 18, 2015 at 6:01 pm #52117@ericguys, i just noticed another bug coming with the latest update, my site lost it´s update button to submit messages at the timeline/activites or tests to groups… gone. cleared cache etc.
works fine using other themes 🙁
November 19, 2015 at 2:53 am #52151@
AnonymousHi @eric, Update button issue is fixed in our last update, it was raised after BuddyPress 2.4 release. please confirm you have update theme
RegardsNovember 19, 2015 at 1:13 pm #52232@eric@vapvarun not in 2.0.4. my site runs the latest version, update button is missing on activities and groups, works only in profiles
🙁
br, eric
November 19, 2015 at 4:42 pm #52241@sportsmockery@pallavi @vapvarun – this is still happening to me. The fix above in options-init.php did not work.
- The question ‘Double profile details at registration page after latest update’ is closed to new replies.