Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'change buddypress menu'

Viewing 25 results - 776 through 800 (of 845 total)
  • Author
    Search Results
  • #6567
    grosbouff
    Participant

    Hi; i’m working on a classifieds component.

    I changed some stuff in the classifieds permalink and now singles items doesn’t display in the right template.

    I think it is a bp_core_reset_subnav_items/bp_core_add_nav_default/bp_core_add_subnav_item problem :

    e.g. : my classified has ../wordpress-mu/classifieds/employers/prod-av/test81 for permalink.

    I “load” the classified like :

    function bp_classifieds_setup_nav() {
    global $bp, $classified_obj, $current_blog;
    $last_action_variable = $bp->action_variables[count($bp->action_variables)-1];
    if ( $classified_id = BP_Classifieds_Classified::classified_exists($last_action_variable) ) {
    /* This is a single classified page. */
    $bp->is_single_item = true;
    $classified_obj = new BP_Classifieds_Classified( $classified_id );

    it works, as the statement if ( $classified_id = BP_Classifieds_Classified::classified_exists($last_action_variable) ) is fired.

    Later, in the same function bp_classifieds_setup_nav(); I set up the menu :

    }else if ( $bp->is_single_item ) {

    $bp->current_item = $last_action_variable;

    //TO FIX ?
    $bp->current_action = $bp->action_variables[0];
    array_shift($bp->action_variables);
    $bp->bp_options_title = $classified_obj->name;

    $classified_link = bp_get_classified_permalink($classified_obj) . '/';
    $category=new BP_Classifieds_Categories($classified_obj->category);
    $classified_parent_slug = $category->slug;
    // Check classified access
    if (( 'published' == $classified_obj->status ) || (classifieds_is_moderator())) {
    $has_access=true;
    }else {
    $has_access=false;
    }
    // Reset the existing subnav items
    bp_core_reset_subnav_items($classified_parent_slug);
    bp_core_add_nav_default( $classified_parent_slug, 'classifieds_screen_single', __('home','classifieds-slugs') );
    bp_core_add_subnav_item( $classified_parent_slug, __('home','classifieds-slugs'), __('Home', 'buddypress'), $classified_link , 'classifieds_screen_single', 'classified-home');

    So the classifieds_screen_single function should fire; but it is not.

    Any idea of why ?

    Thanks !

    #6421
    owencutajar
    Participant

    I tried implementing the tutorial on how to change the Blogs menu which involved creating a bp-custom.php and putting it in the BuddyPress folder. Turns out that the code looks for this in the plugins folder:

    bp-core.php says:

    11 if ( file_exists( WP_PLUGIN_DIR . ‘/bp-custom.php’ ) )

    12 require( WP_PLUGIN_DIR . ‘/bp-custom.php’ );

    Not sure if WP_PLUGIN_DIR should read BP_PLUGIN_DIR or if the tutorial is wrong

    #51782
    Jeff Sayre
    Participant

    @elemsee

    but it sounds as if your solution removes blogs from the bar altogether. We plan to make subscribers members of blogs that the Admins set up…

    You have BuddyPress installed, I assume. So why don’t you give it a try–disabled the blog tracking and see what happens. It does exactly what you’re looking for. It prevents your members (users) from being able to create their own blogs. It does not hide the existing Admin blogs from them.

    If you have more than one Admin-created blog, you can place additional buttons, or fancy menus, to those Admin-based blogs.

    Unless you change the default behavior, WPMU by default makes all new users subscribers to the primary site blog (Blog ID number 1), which is the Admin blog. If you try out my suggestion, you will see that the “Blog” button is still visible. It takes users to the Admin-created blog. Only the “Blogs” button disappears for sight as it is a link to all user-created blogs, not the Admin blog.

    #6297
    Anointed
    Participant

    This is not specifically related to buddypress, but I figured maybe the guru’s here could provide a helping hand. (I did post it in the mu forums as well but so far no responses)

    Running fresh install of wpmu 2.8.4a buddypress is not yet installed.. trying to get system stable first.

    I am running wpmu with subdomain setup and all seems ok with that. This is a fresh install of wpmu.

    For some reason, many plugins which worked perfectly with 2.7.1 are now not working with 2.8.4a

    This mainly happens when I have to go into the admin for a plugin and change it’s settings. (those plugins that come with a settings tab).

    Basically if I am in a subdomain and go to edit the settings of a plugin, not all of the plugins but some, instead of returning to the expected plugin settings page it redirects me to the root domain link as

    http://mysite.com/wp-admin/?c=1

    For instance, the plugin for localization has a url as

    http://subdomain.mysite/wp-admin/admin.php?page=sitepress-multilingual-cms/menu/theme-localization.php

    but it instantly goes to http://mysite.com/wp-admin/?c=1 when clicked…

    I have googled the /wp-admin/?c=1 but have had no luck with an answer.

    Has anyone come up with this problem before?

    I have no idea how to solve this issue, guessing it may be an htaccess issue, but not sure. I am using the standard htaccess file that comes with mu.

    thanks

    #50415
    Paul Wong-Gibbs
    Keymaster

    Will I risk having to have the whole thing redone at every update?

    Yes – because you’ll essentially be customising the default BuddyPress themes.

    #50397
    plrk
    Participant

    If you can build a WordPress theme, building a BuddyPress theme is not very hard – it is just larger.

    altaran
    Participant

    Hi all,

    Would a CSS designer be easily able to change the present horizontal menus into drop downs? More generally, is building a Buddypress theme more difficult than making one for WordPress?

    Thank you

    #49895

    In reply to: Username and Name

    Jeff Sayre
    Participant

    The username field is a mandatory WPMU field. It is used by WPMU as the “user_login” field of the wp_users table. It is the necessary piece of datum that is used when a user logs in.

    BuddyPress has its own mandatory registration field that by default is called “Full Name”. Look in the BuddyPress submenu group in WPMU’s backend. Go to “BuddyPress > General Settings > Full Name field name”.

    You can change the “Full Name” field name to display whatever you want but you cannot remove that field from the registration page nor edit it to be something other than a single textbox field–at least not without hacking the core. Look under the “Basic” field grouping in “BuddyPress > Profile Field Setup” to see what I mean.

    In fact, for testbp.org, Andy did change the outputted name of that field to simply read “Name”.

    It is this BuddyPress field that is used to display the user’s name. If fact, this field can be edited by the user when they visit their profile and navigate “Profile > Edit Profile”. On the other hand, the username field, which is a WPMU field, cannot be edited.

    Graeme
    Participant

    I have finally been able to duplicate the installation.

    Here’s a relatively complete set of steps for guidance. This took me several hours to prepare and it can be easy to make a stupid error along the way. Just take it slow.

    These steps are for WordPress MU 2.8.1, bbPress 1.0.1 and buddyPress 1.0.3.

    1. Download and install WordPress MU 2.8.1

    2. Install the “bbPress Integration” plugin version 1.0 via the “Plugins” -> “Add New” menu of your wordpress mu installation.

    In the search box enter ‘bbPress Integration” and click “Search Plugins”.

    Click the “Install” link for the “bbPress Integration” version 1.0 plugin.

    Click the orange “Install Now” button.

    Click the “Activate Plugin” link.

    3. Download and install bbPress 1.0.1 in a sub-directory of your wordpress installation.

    I chose the sub-directory “/forums/”.

    4. Load up the bbPress installation script by going to http://<yourdomain>/forums/

    5. Click “Go to step 1”.

    6. Enter the database name, database user and database password that you used for your wordpress installation.

    You will not usually need to click “Show advanced settings”.

    7. Click “Save database configuration file”.

    You should see a message “Your settings have been saved to the file bb-config.php. You can now continue to the next step.”

    8. Click “Go to step 2”.

    9. Next you add the integration settings. This is the important part!

    – click “Add integration settings”

    – click “Add cookie integration settings”

    – you will be presented with a list of eight text entry fields

    – the first two are for your wordpress and blog url. For each of these enter your exact urls. I just used the same value for each. They need to commence with http://

    – for all the cookie values just enter “COMMENT OUT”. These will become reference points in the bbpress config file for later.

    10. Click “Add user database integration settings”. This step is also important!

    Leave the existing value in the “User database table prefix” field.

    Enter the WordPress Primary blog id value “1” – THIS IS IMPORTANT.

    11. Click “Save WordPress integration settings”

    If all is well you should see this message.

    Your WordPress integration cookie and database settings have been successfully validated. They will be saved after the next step.

    Once you have finished installing, you should visit the WordPress integration section of the bbPress admin area for further options and integration instructions, including user mapping and the correct cookie settings to add to your WordPress configuration file.

    12. Click “Go to step 3”.

    – enter your site name

    – enter your site url. I entered the url to the forums including the http://

    e.g. http://bp.dev/forums/

    – select the “admin” user for your wordpress installation

    – enter a name for your first forum e.g. “Announcements”

    13. Click the “Save site settings” button

    14. Click the “Complete the installation” button

    15. You should see a screen indicating installation has completed.

    – click the “Show installation messages” option. Scroll through and see of any errors are reported.

    16. At this point you should be able to login to your bbpress installation with your wordpress admin username and password.

    17. Login to bbPress

    18. Click the “Admin” link to go to the admin screen

    19. Go to “Settings” -> “Writing” and enable XML-RPC publishing protocol (this is needed by buddyPress)

    20. Go to “Settings” -> “Discussion” and enable pingbacks (I think this is needed by buddyPress ….?)

    21. Go to “Users”

    22. Go to “Settings” -> “WordPress Integration”

    Set the mapping of bbPress roles to WordPress users roles

    For the WordPress Administrator role select “bbPress Key Master”.

    For all the others select “bbPress Member”.

    Click “Save Changes”

    23. Login to WordPress MU as the admin.

    24. Go to “Plugins -> Add New”

    25. Enter “bbPress Integration” and click “Search Plugins”.

    – you should see “bbPress Integration” 1.0 listed

    – click “install”

    – click the orange “Install Now” button

    – click “Acrivate Plugin”

    26. Go to “Settings” -> “bbPress Integration”

    Ensure there is a full url for the bbPress forums entered.

    Select WordPress type “WordPress MU”

    Click “Save Changes”

    Copy the values listed in the dark grey box at the bottom of your page into your clipboard. There will be four lines that look something like this:

    define( ‘COOKIEHASH’, ‘da4672dda66fd60a6b80e420d32ef26c’ );

    define( ‘COOKIE_DOMAIN’, ‘.bp.dev’ );

    define( ‘SITECOOKIEPATH’, ‘/’ );

    define( ‘COOKIEPATH’, ‘/’ );

    Don’t worry – these values will be different for your installation.

    Open wp-config.php in an editor and insert these lines immediately after the opening “<?php” line.

    Whilst you have wp-config.php open, copy the authentication keys to your clipboard. They look like this:

    define(‘AUTH_KEY’, ‘800345c011dfad9261cedec0a3d914ffa1b40d67b23b66e4809797ce728f0b80’);

    define(‘SECURE_AUTH_KEY’, ‘5d6d3f657c9fb496e3f5488044fc174c238554a1b5347eb633ea8baecf0dcc7c’);

    define(‘LOGGED_IN_KEY’, ‘6749832494719d8217e06c233326cb86da9ec040b16f705156660e1642a5f0e8’);

    define(‘NONCE_KEY’, ’87a5b149e95e0a13020541040353548eaf65b68452be91c685e96a7fbab685bc’);

    define(‘AUTH_SALT’, ‘8ff197cc15f311c975bd14ce131e7872eb390706bd316f72435c081836d14f34’);

    define(‘LOGGED_IN_SALT’, ‘642683992ae38da46082bf9850ab90273deb7d5d1034baf80a3fd32871b5e04a’);

    define(‘SECURE_AUTH_SALT’, ‘7c066b9c14bd558737b74b76c77f928e3612935832a6a47bd70842e118c947fa’);

    They will be different for your installation.

    Save wp-config.php

    27. Open bb-config.php

    Find the lines containing the Authentication Unique Keys. They will have the values “COMMENT OUT” if you followed the instructions above. Comment these lines out!

    Insert the lines from your clipboard into bb-config.php below the lines you commented out.

    You need to edit each line you inserted and prefix the name of each constant with “BB_”

    After doing that, the lines will be something like:

    define(‘BB_AUTH_KEY’, ‘800345c011dfad9261cedec0a3d914ffa1b40d67b23b66e4809797ce728f0b80’);

    define(‘BB_SECURE_AUTH_KEY’, ‘5d6d3f657c9fb496e3f5488044fc174c238554a1b5347eb633ea8baecf0dcc7c’);

    define(‘BB_LOGGED_IN_KEY’, ‘6749832494719d8217e06c233326cb86da9ec040b16f705156660e1642a5f0e8’);

    define(‘BB_NONCE_KEY’, ’87a5b149e95e0a13020541040353548eaf65b68452be91c685e96a7fbab685bc’);

    define(‘BB_AUTH_SALT’, ‘8ff197cc15f311c975bd14ce131e7872eb390706bd316f72435c081836d14f34’);

    define(‘BB_LOGGED_IN_SALT’, ‘642683992ae38da46082bf9850ab90273deb7d5d1034baf80a3fd32871b5e04a’);

    define(‘BB_SECURE_AUTH_SALT’, ‘7c066b9c14bd558737b74b76c77f928e3612935832a6a47bd70842e118c947fa’);

    Save the file and exit.

    28. Clear cookies and Refresh for your domain. In Firefox you can clear cookies for a specific domain pattern.

    29. Login to your wordpress installation as the wordpress admin user.

    30. Assuming you managed to follow the setps above, If you go to your bbPress page you should find that you are logged in!

    31. From WordPress Admin go to “Plugins” -> “Add New”

    – in the search box enter “BuddyPress” and click “Search Plugins”

    – find BuddyPress 1.0.3 in the list

    – click “Install”

    – click the orange “Install Now” button

    – click “Activate Plugin”

    32. BuddyPress is now installed. Follow the BuddyPress instructions for installing the themes to the correct locations and activate them.

    33. In wp-admin go to “BuddyPress” -> “Component Setup” and check that the “bbPress Forums” component is enabled.

    34. In wp-admin go tp “BuddyPress” -> “Forums Setup”

    – ensure that the URL for the forums is entered

    – ensure that the bbPress username and password details have been setup

    – click “Save Settings”

    35. Create a group with option selected for a forum.

    36. Check that you can post topics in the group forum!

    37. Take a break!

    #49510
    danbpfr
    Participant

    wpmu 2.8.1

    bp 1.0.3 trunk version

    bbpress 1.0.1

    here is my bug list. I read the trac message mentionned above and made my own change. Anyway all i listed here is already not working.

    I suggest you go to the site and terst yourself (it’s a test site straigth out of the box)

    May this help.

    Group page – main content

    http://buddypress-fr.net/bpdemo/groups/groupe-de-tests/home/

    Topic list is showing well.

    This is a link from one of the topic. When click on it, it brings me to the homepage.

    http://buddypress-fr.net/bpdemo/groups/groupe-de-tests/forum/topic/25

    Same thing with the “view all topics” link

    http://buddypress-fr.net/bpdemo/groups/groupe-de-tests/forum

    Group page – Forum button

    http://buddypress-fr.net/bpdemo/groups/groupe-de-tests/group-forum/

    Menu is ok, but when i click on “forum”, the right col “main content” becames blank.

    The admin bar disapear also

    Group page – Wire

    http://buddypress-fr.net/bpdemo/groups/groupe-de-tests/group-wire/

    “view all” brings me to the homepage

    Group page – create a group

    http://buddypress-fr.net/bpdemo/members/admin/groups/create/step/group-details

    The 4 menu options (details, settings,…)in maincontent are no more translated

    After the group is created, when i go to the new group admin, the options are translated.

    on step 2, the forum option is deactivated.

    The permanent warning message about configuration is not necessary for ordinary user, because they can’t never install bbPress, even if they are blog admin or there own group forum master.

    Anyway, this means to create a group first, then finish the whole register process, saving and to come back to the group to activate the forum. Not sure if this is a bug, but it’s anoying.

    Once the group is created, the forum option is not appearing at all.

    Group page – wire

    unable to create a message. When posting, i flip to the homepage without any error message.

    Group page – change group avatar

    This is impossible ! I load a new image, loader is turning a little, and… nothing happens.

    *****

    I uploaded the 1.0.3 latest release version and changed the whole bp-theme/group folder from trunk to latest release.

    Now, i can change group avatar.

    Also, can you explain me the difference between the two folder, the trunk version has a very different content.

    #5743
    gen-superman
    Participant

    Hey guys and gals,

    I am currently using the buddy press default member theme 1.0.1.

    http://buddypress.org/wp-content/themes/buddypress.org/images/theme-screens/default-theme.jpg

    also:

    WPMU 2.7.1

    BBPRESS 1.0

    BPPRESS 1.0.2

    I have been trying to edit the following files to edit the menu that appears typically under the logo of this theme, which says, “HOME,BLOG,MEMBERS,GROUPS,EVENTS,CONTENTS”.

    I want to add an existing newly created WPMU page called,”DONATE”, which the button will appear after the CONTENTS button, or for some, after the GROUPS button.

    The Page is not numbered, and the url looks something like:

    http://mywebsite.com/donate-page/

    *This is not a real website, just an example of the url structure.

    The files I have been trying to edit to add this new button that leads to that specific mentioned page is:

    wp-content>themes>bphome>index.php;header.php

    and

    wp-content>bp-themes>bpmember>index.php;header.php

    Once, I edit these files, I notice the codes toward the bottom, which are the menu navigational codes, but they point to something called “slugs”. It also seems to hook into these slugs in some fashion. But, I have no idea how it points to these things or where it is pointing from?

    So, an example of the code might look like from header.php file:

    <?php if ( function_exists( ‘groups_install’ ) ) { ?>

    <li<?php if ( bp_is_page( BP_GROUPS_SLUG ) ) {?> class=”selected”<?php } ?>>/<?php echo BP_GROUPS_SLUG ?>” title=”<?php _e( ‘Groups’, ‘buddypress’ ) ?>”><?php _e( ‘Groups’, ‘buddypress’ ) ?>

    So, how do I incorporate a link into a slug, or how do I create a slug? or what do I change or add after this code to get my own menu button that points to the donate page I mentioned above. I created the page through WPMU create page in the admin dashboard.

    What files do I edit to make this work, and can anyone please tell me the codes that I input to make this work?

    Thanks so much for anyones help in this matter, it is truly appreciated.

    #48876

    In reply to: BuddyBar for bbPress

    r-a-y
    Keymaster

    One other bug I encountered when using the BuddyBar was the second-level menus weren’t popping out in bbPress.

    I found out that the problem is due to some CSS rules overriding one another.

    In /plugins/buddypress/bp-core/css/admin-bar.css, move line 177 under

    #wp-admin-bar ul li:hover ul ul, #wp-admin-bar li.sfhover ul li ul {
    left: -999em !important;
    }

    So your admin-bar CSS from line 171 should look like:

    /* third-and-above-level lists */

    #wp-admin-bar ul li ul ul {
    margin: -28px 0 0 183px !important;
    }

    #wp-admin-bar ul li:hover ul, #wp-admin-bar ul li li:hover ul, #wp-admin-bar ul li.sfhover ul, #wp-admin-bar ul li ul li.sfhover ul { /* lists nested under hovered list items */
    left: auto !important;
    }

    #wp-admin-bar ul li.align-right:hover ul {
    right: 0 !important;
    }

    #wp-admin-bar ul li:hover ul ul, #wp-admin-bar li.sfhover ul li ul {
    left: -999em !important;
    }

    #wp-admin-bar ul li:hover ul, #wp-admin-bar ul li li:hover ul, #wp-admin-bar ul li.sfhover ul, #wp-admin-bar ul li ul li.sfhover ul { /* lists nested under hovered list items */
    left: auto !important;
    }

    ... and the rest of it here

    That was the case for me anyway! If you’re using a custom admin-bar CSS, make sure you make the change as well.

    #48832
    r-a-y
    Keymaster

    Looks like your BP site is up and running!

    What is your problem again?

    Are you saying you can’t access the BuddyPress menus in the WPMU admin area?

    ht*tp://example.com/wp-admin/admin.php?page=buddypress/bp-core.php

    What happens when you try to go there?

    It could be an issue with RewriteRules if you changed the settings in the .htaccess file…

    #48625
    Jeff Sayre
    Participant

    @wtfman

    You are linking to a thread that is three months old. Much has changed since then. For instance, BuddyPress now runs in /plugins/– not /mu-plugins.

    Also, as r-a-y has pointed out, once you activate BP site wide, there is a new menu grouping in WPMU admin called “BuddyPress”. It is located at the very bottom of then menu grouping column.

    #48613
    r-a-y
    Keymaster

    Hey wftman,

    It really depends on the developer of the BP plugin in question.

    The readme.txt that comes with the plugin is usually the best indicator of where to place the plugin.

    There is a BuddyPress menu in the WPMU admin area, but it would be good to know what you mean by “and it sucks that I have to make changes every time there is a blog”.

    Re: Pressbox theme… check out the default “bphome” theme, especially the functions.php file. You’ll probably want to copy over some of the functions into the Pressbox theme functions.php file.

    Hope that helps in some way!

    #5697
    3391663
    Inactive

    In the download section I have read that you have to place the buddypress into /plugins, but had read another post where someone said to place the plugins in /Mu-plugins.

    Where exactly do I place the Bp plugins? I have placed them in plugins and activated them sitewide. It seems to work, but I was wondering if it works if I place it in MU-plugins.

    Another question: Is there any site admin options for BP? I have an MU of 60 blogs, and it sucks that I have to make changes every time there is a blog.

    Also, is there a site admin _—-> BP menu? It says that there is in the installation page, but I have yet to see it or know what I can do with it.

    Last question: I am using the pressbox theme, and I am planning to transfer register and activate.php to the theme. Are there any other files I have to transfer.

    Thanks for everyone’s time. This rocks!

    #48572
    boonika
    Participant

    OK. Here’s what happened:

    I created a group called ‘Extraordinary Video Work’. I also invited friends… we had some Wire activities… and so on.

    Than I clicked My Account/Groups/Create a Group to create a new, ‘Fonts’ group. Did everything as I did for the first group. I clicked Groups from the main menu and realized that the previous group was transformed into this new group. List of members and Wire posts were the same but name of the group (‘Extraordinary Video Work’ was changed to ‘Fonts’) and description were changed. I tried several times. If You want I can create a profile for you so you ca try it yourself. Just give me your email. Mine is pinkforrest[at]gmail[dot]com.

    3125432
    Inactive

    Burt,

    I found a bug in the 1.0 alpha 2 and I was curious if the other members have experienced the same issue, and also if you resolved the issue with the 1.0 release.

    Problem:

    click on Members Directory

    click on a letter for a member listing, say ‘M’ and it shows 21 listings. Okay, first 10 members are displayed. If you click on page 2, it goes to a weird submenu that leads to a blank page.

    Here is the weird behaviour –

    a new page loads with the following url and it’s blank:

    http://www.xxyy.info/OurSocial/OurSocial/wp-load.php?upage=2

    Resolution:

    deactivate the bpc plugin, return to Members Directory

    follow same member listing search for category ‘M’

    click on page 2

    all is fine – works as expected.

    The links for pages 2 and 3 show the same links as listed above, but when you click on them, the main page stays the same,

    http://www.xxyy.info/OurSocial/members

    and only the Member Listing changes

    Using:

    wpmu 2.7.1 and the new bp 1.0.2

    Also, an other question: if we upgrade automatically to bpc 1.0, what about the existing db created tables? Will they be in conflict or will the plugin just create a new table? I ask this because I read the ‘details’ of the upgrade and it says the new plugin creates one new table in the db

    Thanks so much for your hard work.

    Brian

    #5636
    #48334
    Jeff Sayre
    Participant

    First off, I do sympathize with your frustration on finding an acceptable set of solutions to your questions. Without writing the code for you, it is difficult to point you in the proper direction. There have been a number of options presented, that while being a compromise to your ultimate, desired solution, could produce satisfactory results.

    Isn’t the whole point of Buddypress to turn the WordPress base into something more user-centric?

    Yes and no. As I already said two posts above:

    WPMU is not designed as a user-centric platform. It is blog-centric. BuddyPress puts the focus on the user.

    But, BuddyPress is still a layer that rests on top of WPMU, not the other way around. BP relies heavily on certain WPMU functions to handle much of the user registration process. And WPMU requires that the username field be populated (I realize that you know that).

    This thread is NOT about the username issue.

    I understand that. But what I quoted from your past post was about the username field and that is what I specifically answered in my last post.

    This particular thread is entitled “How to use full name, first name + last name“. Burt already provided an answer to this question above via this thread where he shows you how to do exactly this in code.

    I’ve understood all along in the various threads that you’ve started on this range of related topics that you want another option, some other way to insert your desired datum into the user_login field, or use newly created fields to allow registering users to enter their firstname and lastname, or that you want a way for users to enter their email for login, or a way to use BP’s xprofile table to display fname and lname in various ways and places, or a way to rearrange fields on the registration form, and that you hate WPMU’s concept of username and want a different option. I get all of this.

    Others (including myself) have tried to be as helpful as possible in each of those threads, often rehashing the same answers. I don’t say this to be mean; I say this because we’ve tried to explain in multiple ways and multiple times that what you are after is not possible at this time without hacking the core (in some cases) or writing your own custom plugin(s).

    https://buddypress.org/forums/topic.php?id=1746

    https://buddypress.org/forums/topic.php?id=1811

    https://buddypress.org/forums/topic.php?id=2118

    https://buddypress.org/forums/topic.php?id=2119

    https://buddypress.org/forums/topic.php?id=2926

    How does Buddypress handle first name + last name?

    It does and it doesn’t. There are no firstname and lastname fields in BuddyPress unless you create them as Mike Pratt explained above. BuddyPress has its own mandatory registration field that by default is called “Full Name”. Look in the BuddyPress submenu group in WPMU’s backend. Go to “BuddyPress > General Settings > Full Name field name”

    Now, there is a function in bp-xprofile-filters.php called xprofile_sync_wp_profile() that will take the datum from the “Full Name” field and split it into a pseudo firstname and lastname and then insert that as meta data into the wp_usermeta table, but it can only do that if a user actually edits their fullname field to include a more than one-word name. So if a user does not edit that field, there will not be any fname/lname wp_usermeta entries for that user.

    Buddypress puts a default first x-profile field Name on the registration form; is it possible to replace that with separate first name + last name fields?

    You can change the “Full Name” field name to whatever you want but you cannot remove that field from the registration page nor edit it to be something other than a single textbox field–at least not without hacking the core. Look under the “Basic” field grouping in “BuddyPress > Profile Field Setup” to see what I mean.

    Or is there already a native solution for first name + last name in WPMU that Buddypress could tap into? (Nicola Greco: ‘… you could replace it with the wp built-in name & last name, or use xprofile fields fot that …”)

    In this post above, I explained that if you want to go this route, you’ll need to pull data from two records in wp_usermeta to extract the firstname, lastname combination. If you do not feel comfortable coding this yourself, you could hire a coder to write a simple function to do just that. But be aware, as I explained above, it is possible that not every user will have firstname and lastname meta date.

    From your OP:

    Default Buddypress is fine for teens/tweens who want to use their anonymous username, but it’s not suitable for a more grown-up business network, for example.

    BuddyPress seems perfectly acceptable for business users. There are many professional, adult-based sites that are successfully attracting users to their BP sites. Mike Pratt’s site is a great example, for one.

    I’ve been using my full name on this site from day one. It did not bother me that I had to use a single username when registering because I knew I had the option to fill out my full name for display purposes later. It also allowed me to brand BuddyPress.org with my unique name, creating a useful URI in the process.

    In fact, the single username approach is what many sites use to allow users to brand themselves. Twitter, youtube, FriendFeed, Delicious, Digg, LinkedIn, and many more all require a unique, single-word username. Of course, some of these then allow you to (or even require) that you use an email for subsequent logins. This is in BP’s future as well.

    In the not too distant future, there may be an option to allow users to sign on with their email address via OpenID or another protocol. See the BuddyPress Roadmap and read about the Open Stack.

    But for now, your options are limited and if you want to change things you must code your own custom solution or hack the core.

    There is not much more we can do, but as I said in my last post, if the username concept bothers you so much, you’ll have to go to the WPMU forums and see what solutions might be in the works–if any.

    Mike
    Participant

    hola buddypressers – did any of you who are on MT DV get forums to work properly? and if so, what did you do? i’ve tried hooking up bbPress with BP/WPMU and i always wind up with “There was an error posting that topic.”

    so before you ask, i’m running WPMU 2.7.1, BP 1.0.1 on a subdomain with subdirectories on a dedicated virtual server along with bbPress 1.0 RC-3. on my first couple of tries when i followed these directions http://trac.buddypress.org/browser/trunk/bp-forums/installation-readme.txt, i never got the option to select Admin for a dropdown menu. one time, i just created a new user and changed the role to admin that way. another time, i did get one option from the pulldown menu for the user that i had created in step #8 (from the previous installation attempt) and assigned admin/keymaster to it. both of those didn’t work.

    so then i got a suggestion to read this thread http://buddypress.org/forums/topic.php?id=471, and tried alphas 4, 5 and 6 — all three of them presented me with a blank screen when i typed in the installation url (but bbp 1.0-rc3 worked every time whenever i visited the install link… i was paranoid enough to switch back and forth every time — alpha 4, blank >> rc3, works; alpha 5, blank >> rc3, works; alpha 6, blank >> rc3, works). afterward, i decided to hop on the bbpress forum to search for installation problems for those alpha version i had tried and stumbled on this discouraging thread http://bbpress.org/forums/topic/how-many-more-alphas-before-beta#post-24237, which made me lose all hope, lol.

    so now, i’m down to something called curl lib, but i don’t know if that could be the problem either, but if there’s someone on there on MT’s DV who ran into the same problems as i did and managed to sort through them, please reply! if not, it’s not the end of the world. everything else is just dandy =)

    #48224
    Jeff Sayre
    Participant

    You need to log into WPMU’s backend as site admin ( /wp-login.php), and then go to

    Site Admin > Options > Allow new registrations

    and set the options you want.

    Also I am unable to create an extended profile like shown in some of the demos. It only allows me change the “base” and avatar. I can’t put birthday, location, etc.

    To add additional profile fields, you need to navigate to the BuddyPress submenu grouping in WPMU’s backend. If BuddyPress is installed and activated, this submenu group is found at the very bottom of the menu column.

    So, go to

    BuddyPress > Profile Field Setup

    and set up the additional fields you want.

    #48215
    Ted Mann
    Participant

    If anyone is looking to hack the adminbar so that when users log in, they stay on the current blog they’re on, just edit the bp-core-adminbar.php file and change the reference to $bp->root_domain, under the “log in and sign up links” section, to $current_blog. Also, I took out the redirect as well. So, my login widget now looks like this:

    // **** "Log In" and "Sign Up" links (Visible when not logged in) ********
    function bp_adminbar_login_menu() {
    global $bp;

    if ( !is_user_logged_in() ) {
    echo '<li class="bp-login no-arrow"><a href="' . $current_blog . '/wp-login.php">' . __( 'Log In', 'buddypress' ) . '</a></li>';

    // Show "Sign Up" link if registrations are allowed
    if ( get_site_option( 'registration' ) != 'none' ) {
    echo '<li class="bp-signup no-arrow"><a href="' . bp_signup_page(false) . '">' . __( 'Sign Up', 'buddypress' ) . '</a></li>';
    }
    }
    }

    3125432
    Inactive

    hi –

    I am using WordPress MU 2.7.1 and buddypress 1.0.1 and Facebuddy Theme 1.0

    This has now happened twice in two days, where I logout at night and attempt to log on a little later only to see this “blue screen of death” message:

    This user has elected to delete their account and the content is no longer available.

    I have done nothing of the sort. All files are in place.

    I will say that I have elected to delete some lines of code to remove some functions in the core files but they aren’t super critical, in my opinion.

    Remove the log choice from the profile drop down menu

    Remove the edit profile button

    Remove the edit profile sub nav selection

    Remove the blogs from the drop down menu in the search function

    Change the destination and name of the logout in the top bar

    Other items that I have been working with a programmer to implement is a SSO. So he had provided a plugin to an external membership software that works with WordPress MU to register new members by passing their field information. I am wondering if that might also be causing this. That can’t be though because the user records are just written to the database.

    This is really tough. So much work done now twice in personalizing Buddypress.

    Any ideas?

    Thanks,

    Brian

    #47331
    Jeff Sayre
    Participant

    catincoach-

    This thread is very outdated. A lot has changed in BuddyPress since this thread last had activity 3 months ago.

    If you are simply looking for where you can change the text of the menu buttons “Home”, “Blog”, “Members”, “Groups”, “Blogs”, then it is found in the header.php file of both the home and member themes.

Viewing 25 results - 776 through 800 (of 845 total)
Skip to toolbar