BuddyBoss Home – Web Support Forums Themes Boss. theme Double profile details at registration page after latest update

Viewing 15 posts - 1 through 15 (of 23 total)
  • Question

    #50678
    @eric

    dear 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, eric

    Answers

    #50683
    @vapvarun

    Hi @eric, Sorry for inconvenience
    It is a high priority task in our todo list

    Sorry 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 function

    
    public 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 Dubey

    #50694
    @eric

    thanks, seems to work.

    br, eric

    #50702
    @vapvarun

    Hi @eric
    I will notify you when it get fixed
    Regards
    Varun Dubey

    #50709
    @noodweerbe

    @vapvarun, some things to do in a next release i see (hopefully soon). Thanks for the hard work.

    #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,
    Michael

    #51822

    Anonymous
    @

    Hi @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
    Pallavi

    #52072
    @eric

    @pallavi @vapvarun no, not on my site, bug still present at 2.0.4 🙁


    @mln83
    does it work on your site?

    #52074
    @mln83

    Hi @eric,

    Same story here. The bug is still present on my site as well – 2.0.4.

    Best regards,
    Michael

    #52079
    @vapvarun

    Hi @mln83, @eric

    Sorry 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 Dubey

    #52109
    @sportsmockery

    @vapvarun I am on current version and still get the repeat as well.

    http://smboss.wpengine.com/register/

    #52117
    @eric

    guys, 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 🙁

    #52151
    @vapvarun

    Hi @eric, Update button issue is fixed in our last update, it was raised after BuddyPress 2.4 release. please confirm you have update theme
    Regards

    #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

    #52241
    @sportsmockery

    @pallavi @vapvarun – this is still happening to me. The fix above in options-init.php did not work.

    http://chicago.sportsmockery.com/register/

Viewing 15 posts - 1 through 15 (of 23 total)
  • The question ‘Double profile details at registration page after latest update’ is closed to new replies.