Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'profile fields'

Viewing 25 results - 2,476 through 2,500 (of 3,593 total)
  • Author
    Search Results
  • #114280
    Bowe
    Participant
    #114279
    blauweogen
    Participant

    For anyone else looking for getting an if statement to work, I got to work. This is from member-loop.
    `

    some text

    Here is the same for the member-header.

    some text

    `

    candy2012
    Member

    Hi Brandon,
    I’d love to learn more about how can I implement what you suggested (I am not a programmer, so I’d really need some code here :-) )

    “hook in a profile edit action and check to see if all the fields you require have been completed. ” .. how ?!?!?
    Can you help with the function pls?

    “Then you could hook into bp_init, check that usermeta field, and if you don’t get the correct response, then you can redirect them to their profile, or display an error telling them they need to complete their profile.” – would be fantastic, but again … how to write that?

    The issue with “friendly or not for the user” is all related with what your site wants 2 achieve; if you simply need all that information to make your site useful and do not want to end up as a fakes collection a la Facebook, than you just NEED to find a way to enforce that on users …

    Thank you in advance, woudl be really great to have some feedback on that!

    (I find that user progression pretty much useless, and it does not work properly in WP 3.1.2 either :-( ); that’s just my opinion on it ..

    #114274
    candy2012
    Member

    what do you mean by “miss”?!? All those mandatory fields are useless if not forcing the user to fill them in (which right now does not happen)
    It’s a complete lack of logics, don’t you see that?

    right now you have so-called mandatory fields which actually are optional, cause no one, no where, can force the user to fill them in!

    #114191
    candy2012
    Member

    works well for me :-)
    I would have loved to have a splitted registration form though (like fields from group1 on the 1st page, fields from group 2 & 3 on the following form registration page, etc), to prevent scare away users if you happen to have more fields you want them 2 fill in …

    but I must be honest, I have NO clue as of how to achieve that ..

    If you happen to find a solution, I’d appreciate if you’d post it back here :-)

    C.

    #114161
    webbietl
    Member

    Is there a way to add extended profile fields info to the Bookings Report? When people register, I ask them if they are Vegetarian and I need that info when I manage the bookings to know how many vege meals to serve. I tried using for an added column but it only fetches my preference in all the columns.

    Hope to see the option to add extended fields in Books report.

    #114141
    billzy
    Participant

    Custom Profile Fields Buddy press plugins… there is a also a few permission plugins in there also… wordpress.org i found them months and months back still work…

    #113901

    In reply to: Member Profile Extras

    Virtuali
    Participant

    `one, too: cursor on “buddypress with logo” on menu, on left. it will show arrow to expand, see option there.`

    ???

    Just go to your dashboard and create more profile fields under “Profile Field Setup”

    #113839

    @paulhastings0 Try this filter, it will sync user name on the fly

    just paste this block of code in your template functions.php

    `
    /////////////////////////
    ///// To sync user names on the fly, it will show xprofile fullname of user
    /////////////////////////
    function wpi_sync_member_name($data) {
    global $members_template, $bp;

    #$firstname = xprofile_get_field_data( 1, $members_template->member->id ); // 1 = firstname > wp_bp_xprofile_fields.id
    #$lastname = xprofile_get_field_data( 51, $members_template->member->id ); // 51 = lastname > wp_bp_xprofile_fields.id
    #$fullname = $firstname .’ ‘.$lastname;
    #return $fullname;

    return bp_core_get_user_displayname( $members_template->member->id );

    }
    add_filter( ‘bp_get_member_name’, ‘wpi_sync_member_name’ );
    `

    Paul Wong-Gibbs
    Keymaster
    lselwd
    Member

    how do so?

    Andrea Rennick
    Participant

    The “create blog” text only shows up if you’ve enabled multisite. Which I’m not sure the book covers.

    lselwd
    Member

    When a new user go to Register… … …. blog built check box, blog name…

    Neither seen custom fields created after installation of bp…

    I went install wp plug in “BP Groupblog”, installed success, but when went activated appeared:

    Plugin could not be activated because it triggered a fatal error.

    Warning: require(/home/content/a/b/c/abc123uyc5/html/PI/wp-content/plugins/bp-groupblog/bp-groupblog-cssjs.php) [function.require]: failed to open stream: No such file or directory in /home/content/a/b/c/abc123uyc5/html/PI/wp-content/plugins/buddypress-group-blog/bp-groupblog.php on line 26

    Fatal error: require() [function.require]: Failed opening required ‘/home/content/a/b/c/abc123uyc5/html/PI/wp-content/plugins/bp-groupblog/bp-groupblog-cssjs.php’ (include_path=’.:/usr/local/php5/lib/php’) in /home/content/a/b/c/abc123uyc5/html/PI/wp-content/plugins/buddypress-group-blog/bp-groupblog.php on line 26

    lselwd
    Member

    I am a “buddypress FOR DUMMIES” BOOK Reader,… ch.6

    Virtuali
    Participant

    do not shown create blog data or, the fields in Profile, created by me after install

    What? Please rephrase your question, because I can’t understand your problem.

    #113696
    Pisanojm
    Participant

    Here is a recap of some posts I posted at http://buddydev.com recently:

    I use Bp-Cosmic-Pro Theme built of of bp-mag and have about one spam registration per couple of weeks (and it’s usually a real person that registers and gets through)… They are caught within minutes of posting something ridiculous and marked as spammers by the admins.

    There are a number of reasons for that:

    1. It’s a closed/ register only site (but free to all), (note: I do not require e-mail validation either)
    2. I use BuddyPress Humanity Anti-Spam Plugin
    3. I use Si-Captcha Anti-Spam
    3. Multiple Profile fields are required to be filled-in at registration as an ANTI-SPAM measure – in part.
    4. I have a TERMS and use that Requires THE CHECKING of a box to register.
    5. I use the bad behavior plugin to keep out the crazies and use the Blocking-list feature of it.

    Occasionally, I get the I can’t register e-mail, but it is rare and there is a note for people to contact me if they can’t register properly… I have 1700 active (non-spam users) on my site and virtually no SPAM.

    I believe one of the keys to success here is that it is a “private site” and as such it’s not indexed (I realize this could be a problem for many sites, but not my niche site). So, sites don’t scrape it as a potential source to attack.

    I would also recommend the ANIMAL BuddyPress Captcha plugin.

    *****************************

    I usually think about SPAM protection in the form of a Castle for open community WordPress Sites:
    1. The Moat: Programs like Bad-Behavior and plugins that stop bots/scrapers before they get “through” to the site.
    2. The Gate/Drawbridge: Programs like Captchas, Math Challenges, Reverse fields that SHOULDN’T be filled in to “trap” bots from auto-filling.
    3. The Keep: Programs like Akismet.
    4. The Guards: Moderators with the ability to knock out spam when they see it.

    The biggest issue with BuddyPress is that THERE IS NO KEEP (no. 3 above) for the Activity Streams…
    As far as I know, there are not programs like Akismet or any of the “KARMA” / Comment anti-spam plugins that work for the BuddyPress group/activity/forum streams… DJ-PAUL has talked about making Akismet work on BuddyPress Streams at the BuddyPress.org site, but there is nothing yet that I know of yet –

    If anyone does know of something that will “auto-moderate” the BuddPress Stream updates/comments, please let me know… ;)

    Regards.

    #113047
    solenyi
    Member

    @wordpresschina @boonebgorges
    Unfortunately, I cannot get it to work so far. I have 870 users with about 30 different profile fields from another CMS which I need to import, so it would be really important not to have to do this by hand… Could you provide an example csv file which shows how it should be structured? Are the names for the columns just given in the first row?

    Cheers

    Sebastian

    domrio
    Member

    Sorry about the double topic post, the first one said it failed.

    #112952

    In reply to: Export Users

    xsn0w
    Participant

    The plugin @Pisanojm suggested might work if we can add the custom profile loop fields to it.

    #112915

    In reply to: Update profile fields

    Jenny Beaumont
    Participant
    #112914

    In reply to: Update profile fields

    Jenny Beaumont
    Participant

    I’m looking for something similar – need to be able to update user profiles as an admin from backend…let me know if you find anything! :)

    #112760
    Brajesh Singh
    Participant

    @all, great going, nice to see the movement :)
    @mercime, thanks :)
    @djpaul,
    just updated the xprofile template tags to cutdown the query for select/multiselect fields. Please have a look here https://trac.buddypress.org/ticket/3233

    #112674
    Brajesh Singh
    Participant

    I am interested in improving the xprofile fields to allow developers to add new field types. currently we have a limited set of fields(say multiselect/checkbox etc). An example extension could be allowing to add an specializationn of select box with Country drop down which will save numerous times for many site owners. I am not sure if that needs to go in the core plugin, but certainly we need to add some action/filters in the core to make that happen. Also, currently, xprofile needs to improve the queries for fetching select field(My benchmark shows one query per item in the dropdown list of a field). So, if we have a field with 100 items in select menu on the edit profile/register page, It will do 100+ queries for that single field.

    If improving xprofile fields is still on the card, I will be very happy to work on it.

    #112612
    latinosamorir
    Participant

    @candy2012.

    Thanks!!!

    I have not tried this yet but soon will. I’ve been waiting for a year for this solution. I wonder why the BP gurus dropped the ball on this.

    #112543
    ARHistoryHub
    Participant

    1. Go to members/single/profile/edit.php in your theme.
    2. Find and delete this line `

    `
    3. Paste this `

    ` after each instance of this line ` `.

    And it’s a similar sort of process for the register.php – found in the registration folder in your theme.
    Sloppy, but oh well.

Viewing 25 results - 2,476 through 2,500 (of 3,593 total)
Skip to toolbar