Viewing 15 replies - 1 through 15 (of 21 total)
  • Plugin Author Miguel López

    (@atallos)

    Hi,

    I’ve already tested buddypress 2.0 beta version with my plugin and I don’t see the bugs you are talking about. When I’m on profile page of a member, I can see only the age or only the birthdate. When I’m on the edit profile form, all is working good too…

    Can you send me maybe screenshots to see what you are viewing?

    Thread Starter sharmavishal

    (@sharmavishal)

    Sorry Donmik

    Was a mistake from my side. not working with buddyboss theme. its working absolutely fine with BP default theme…sorry once again…

    Plugin Author Miguel López

    (@atallos)

    No problem! But I can’t try it because buddyboss is a premium theme. Check the default buddypress theme and compare the templates between the two themes maybe you can see what buddyboss is missing…

    csimpson

    (@csimpson)

    Hi there, I also have this problem. I have the d.o.b field and also the color field active as user fields. On the edit profile page when logged in for some reason each entry is also being duplicated with a text field. If you leave these fields blank, you cannot save details on the edit page unless you complete them with something.

    theme – http://www.gavick.com/wordpress-themes/m-social,135.html‎ BUT same issues on twenty 13/14.

    image – http://www.eambitions.net/issue.jpg
    buddypress 2.0

    screenshot 1 – ok in profile fields display, not duplictaed
    screenshot 2 – ok profile view when logged in
    screenshot 3 – wrong on profile edit, fields suddenly duplciated
    screenshot 4 – wrong in admin panel investigating user, duplicating field and not displaying date of d.o.b

    Please help, and awesome plugin! Thank you

    Thread Starter sharmavishal

    (@sharmavishal)

    Its a theme issue…try with bp default and it works fine..the theme needs xprofile visibility fields as mentioned on home page of this plugin

    csimpson

    (@csimpson)

    any idea of where to put the code in BB 2.0? seems a different layout as the locations you mention, dont exist. regards Craig

    Thread Starter sharmavishal

    (@sharmavishal)

    You meant BP 2.0 right? No idea ..basically as the plugin author says the theme should support it

    Plugin Author Miguel López

    (@atallos)

    Hi,

    In the faq, I explain what hook you need to have in your theme. If you don’t find the edit.php or register.php you need to search in your theme the files responsible of displaying edit profile form and registration form.

    Thread Starter sharmavishal

    (@sharmavishal)

    Hi donmik meant no disrespect. What I meant I just shifted to a theme which supports your plugin. Cause I had to use your plugin at any cost

    Plugin Author Miguel López

    (@atallos)

    Yes, I know there is no disrespect. Don’t worry. I can’t help if it’s a premium theme, I only can help if the theme is free… So if it’s a premium theme, I think you need to find the files or give me as much info as you can…

    Hi sharmavishal.

    May i ask which theme you used in the end? Was it a free one? Id like to use a theme which should work so i can tell whether the problem is the theme or not.

    Donmik, i tried this but with no luck: –
    If you can add this support, you should copy edit.php file from wp-content/plugins/buddypress/bp-themes/bp-default/members/single/profile directory into Msocial/buddypress/members/single/profile directory (you should create these directories) and in this overriden file add this line of code.

    <?php
    /**
     * BuddyPress - Users Profile
     *
     * @package BuddyPress
     * @subpackage bp-default
     */
    
    ?>
    <div class="item-list-tabs no-ajax" id="subnav" role="navigation">
    	<ul>
    		<?php bp_get_options_nav(); ?>
    	</ul>
    </div><!-- .item-list-tabs -->
    
    <?php do_action( 'bp_before_profile_content' ); ?>
    
    <div class="profile" role="main">
    	<?php do_action ( 'bp_custom_profile_edit_fields_pre_visibility' ); ?>
    
    	<?php
    		// Profile Edit
    		<?php do_action ( 'bp_custom_profile_edit_fields_pre_visibility' ); ?>
    		if ( bp_is_current_action( 'edit' ) )
    			locate_template( array( 'members/single/profile/edit.php' ), true );
    		// Change Avatar
    		elseif ( bp_is_current_action( 'change-avatar' ) )
    			locate_template( array( 'members/single/profile/change-avatar.php' ), true );
    		// Display XProfile
    		elseif ( bp_is_active( 'xprofile' ) )
    			locate_template( array( 'members/single/profile/profile-loop.php' ), true );
    		// Display WordPress profile (fallback)
    		else
    		locate_template( array( 'members/single/profile/profile-wp.php' ), true );
    	?>
    </div><!-- .profile -->
    <?php do_action( 'bp_after_profile_content' ); ?>

    the buddypress default theme is also not currently available as it is being redeveloped since the changes beyond 1.7

    and sorry to be a pain, but myself and sharmavishal have both said that we do see the fields but they are being duplicated. Therefor does this mean that our current themes do support xprofile fields…

    Also I have just found the line that you detail to edit here:
    wp-content/plugins/buddypress/bp-themes/bp-default/members/single/profile/edit.php

    and it is on the edit page where i see the duplication as per my screenshots mention, which can be seen again here:
    http://www.eambitions.net/issue.jpg

    any help, much appreciated.
    Thanks Craig

    ah i can see you have this issue on another thread now as well and having buddypress investigate – I guess my only point is to mention that i am using a buddypress made theme.

    regards Craig

    Thread Starter sharmavishal

    (@sharmavishal)

    BP default theme

Viewing 15 replies - 1 through 15 (of 21 total)
  • The topic ‘BuddyPress 2.0’ is closed to new replies.