Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 31,001 through 31,025 (of 32,678 total)
  • Author
    Search Results
  • #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.

    #48323
    peterverkooijen
    Participant

    This particular request is a WPMU issue and has nothing to do with BuddyPress. I’m afraid there is nothing we can do here to help you, but I strongly encourage you to search the WPMU forums for a similar thread and post a new thread if you can’t find anything related.

    It has everything to do with Buddypress. My question is about the relationship between Buddypress X-Profile tables and how WPMU handles first and last name. It’s about optional fields and how to integrate them into the registration process.

    I do understand this concept and your desire to achieve this type of setup. However, as I said in my previous post, WPMU is blog-centric, not user-centric. The username field is actually what WPMU stores in the “user_login” field of the wp_users table. Therefore, the way WPMU currently works, this datum is mandatory.

    This thread is NOT about the username issue. I use the wp-email-login that allows members to log in with their email address, but I understand the username is still mandatory. That’s why I would like to figure out a way to autogenerate it from first+last name.

    Which brings me back to first and last name. Let me restate the question:

    How does Buddypress handle first name + last name?

    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? Or should I use Name as First name and create a custom field for Last name?

    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 …”)

    WPMU is blog-centric, not user-centric.

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

    #48315
    Justin Brock
    Participant

    Perhaps that should be modified in the BuddyPress requirements. I prefer php5, but WordPress Mu suggests lower.

    #48291

    Which theme are you using? First guess would be that the theme is missing the div ID that WordPress looks for to redirect it to, but that’s a shot in the dark that I haven’t looked into yet.

    #48274
    r-a-y
    Keymaster

    Okay everyone!

    Here’s an update to my code for the BP admin bar in bbPress.

    Keep the existing recreate_bb_admin_bar() function, but for the last part (the add_action’s) use this:

    add_action('bb_foot', 'recreate_bb_admin_bar');
    add_action('bb_admin_footer', 'recreate_bb_admin_bar');
    add_action( 'bb_head', 'bp_core_admin_bar_css', 1 );
    add_action( 'bb_admin_head', 'bp_core_admin_bar_css', 1 );

    This uses bbPress’ default header and footer hooks instead of WordPress’, so in theory, you could get rid of wp_head and wp_footer in your bbPress theme.

    You’ll still need to keep the deep integration code in your bb-config.php though!

    Also this code is updated so you can see the BP admin bar in the bbPress admin area. The code before did not work for that!

    Dewey Hulsey
    Participant

    I have an implementation of BuddyPress and WordPress MU going. I would like users to have their blogs created for them as they register, rather than it be an option. Any advice?

    I have already installed a plugin that limits 1 blog per user and am looking for a solution that either duplicates or works along side that functionality.

    Any help is appreciated. Thanks.

    #48260
    gwsa
    Participant

    Turns out it might be a bug after all, or at the very least an incompatibility.

    If a plugin calls ‘get_template_directory()’ on any page other than the blog (ie if it runs on the admin panel) BuddyPress intercepts the call and rewrites the theme directory thus killing all your themes.

    Thanks for all your help.

    (I had Maintenance Mode on, which I activated when I upgraded.)

    #48259
    Jeff Sayre
    Participant
    #48243
    Jeff Sayre
    Participant

    @Burt-

    Running trunk wpmu developed various issues in the back end widget area. I was testing the bpc alpha 4 widgets and couldn’t change the titles. What?!

    Burt, are you aware of the new Widget API in 2.8? This is why you’re widgets were misbehaving. See here for more details: https://codex.wordpress.org/Version_2.8#New_Widgets_API

    @DJPaul-

    I too am sticking with WPMU 2.7.1 for the time being. I’m just running bleeding edge with BP. Once I switch over to WPMU 2.8 trunk, I’ll give this a go. It sounds like an interesting plugin.

    #48228
    Jatinder Dhiman
    Participant

    Hi,

    I am using WordPress MU 2.7.1 . I have the same problem with user registration form. When a user sign up’s and enter his details in the form after the registration when the user login to the site then the only nick name is displayed and he has to fill all the information in the form again then the information is displayed in his profile.

    Jatinder

    peterverkooijen
    Participant

    WordPress MU 2.7.1 + BuddyPress 1.0.1.

    Was this issue fixed in version 1.0.2? I will upgrade, test and report back, but any info on this from your side is appreciated.

    Clearing the browser cache should not be necessary. Regular users could try registering different accounts from the same computer as well. You can’t tell them to first clear the cache before trying to register.

    peterverkooijen
    Participant

    This looks to me like a potentially disastrous bug.

    I have a clean install of the latest non-beta WPMU and Buddypress releases. I tried to register a new test user:

    username: whatever

    email address: peter@oneofmyaccounts.com

    full name: Test Userman

    I received an error message, because I had already used the same email address for another test user. So I tried again with another email address:

    username: pointlessusername

    email address: peter@mumbairelated.com

    full name: Raj Frommumbai

    Registration went through this time but resulting in an account with this mix:

    username: pointlessusername

    email address: peter@mumbairelated.com

    full name: Test Username

    Apparently WordPress MU user data and WordPress X-Profile user data don’t synchronize, play nice. That is crucial if you want to rely on Buddypress for member registration and management!

    #5590
    robig
    Member

    Hi,

    I am using a WPMU 2.7.1 with the latest BuddyPress, and FaceBuddy theme. Actually InviteFriends and One Click Updater is also active site wide.

    While I am clicking the SignUp or Create Account (calling register.php) the WordPress login page appears. Do you have any idea, whats going wrong?

    I didnt found any information about how to setup the registration form page as well, if you can send me some links, i would be happy to receive it.

    thanks,

    R.

    r-a-y
    Keymaster

    Yes! The switch_to_blog() function is so important!

    That’s one of the first “eureka” moments I had when switching over from WordPress Standard to MU.

    jodyw1
    Participant

    While some people are letting their members do any style, any way on their own personal MU blog pages, I wanted a more uniform appearance, at least at first, for my site.

    I’d seen others ask the same or similar questions about creating what would be a “global” header and sidebar functions that could then be used on the member pages. But I’d never saw an easy way to do this until today.

    The switch_to_blog function.

    I had no idea there was such a thing — mainly ’cause I’m still learning WP — but it’s been a pot of sweet, succulent goodness now that I’ve discovered it and how it works.

    I’ve been able to use it to create a consistent header across all of the member blogs. I’m working now on creating the recurring sidebar I wanted by using that and the restore command.

    I’m sure there are some limitations, but I’m not attempting anything too fancy with this. So if you are working at trying to get some kind of scripted action controlled from afar for your member pages, check out the

    http://codex.wordpress.org/WPMU_Functions/switch_to_blog

    and

    http://codex.wordpress.org/WPMU_Functions/restore_current_blog

    We now return you to your regularly scheduled Forum conversation, already in progress.

    #48147
    Justin Brock
    Participant

    Yeah, Jeremiah. That’s how it happens.

    John, WordPress MU (2.7.1) is working fine. It’s when I upload BuddyPress (1.0.2) that i get the error. My admin panel, the public blog, everything becomes Error 500 in the browser once I upload the files.

    I can still see everything fine in the ftp explorer [Filezilla]

    #48143

    Step 1 – Download latest version of WordPress MU (2.7.1)

    Step 2 – install on server and verify it is working

    Step 3 – Download latest version of BuddyPress (1.0.2)

    Step 4 – copy to the plugins directory

    Result

    Error 500 on all pages

    #48137
    r-a-y
    Keymaster

    Kunal17, you could potentially use the PHP Code Widget Plugin by Otto to paste that PHP snippet by Milan in there.

    https://wordpress.org/extend/plugins/php-code-widget/

    #5580
    Justin Brock
    Participant

    I am getting a server error 500 every time I try to upload BuddyPress 1.0.2.

    I uploaded buddypress 1.0.2 to the plugins folder – result = error 500

    I installed buddypress 1.0.2 from the plugins panel – result = error 500

    This is on a fresh WordPress mu 2.7.1 installation.

    What am i doing wrong?

    #48130

    I am fairly confident there is a site wide tags plugin for MU that allows this.

    Search the wordpress.org plugin area for “site wide tags” and see what you get.

    (Normally I’d give a better answer but I’m posting from my BlackBerry.)

    #5577
    flylv
    Participant

    I want to display all tags(contain the tags in the blogs) in one pag or widget.

    the default tags cloud just display tags in main blog,

    is there any plugin or method to do this?

    I try “WordPress MU Sitewide Tags Pages” but it just show posts.

    http://en.wordpress.com/tags/ this is the result I want!

    #5576
    Ishimwe
    Participant

    I just finished doing the swahili translation but so far I haven’t found a valid “translation document”. All I get is the wordpress translation file.

    My question: How do I get buddypress to pick up the swahili files before I make them public ?

    #48107
    takuya
    Participant

    @gwsa

    where do you host your site? Just in case other bp users face the same nightmare when choosing the host…

    I’ve never seen this problem, my install just works properly. Make sure you disable all other plugins but bp when solving this problem.

    #48100
    Andy Peatling
    Keymaster

    gwsa – because this is not a BuddyPress bug. It’s something to do with your setup, hence the reason no one else has had the problem.

    Are you sure you don’t have any crazy re-write rules or symlinks for your themes folder?

    #48099
    gwsa
    Participant

    Also tried upping to 1.0.2. No fix.

Viewing 25 results - 31,001 through 31,025 (of 32,678 total)
Skip to toolbar