Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'profile fields'

Viewing 25 results - 3,626 through 3,650 (of 5,698 total)
  • Author
    Search Results
  • #118383
    aces
    Participant
    #23670
    Tina
    Participant

    I have been trying to get rid of (or greatly eliminate) my spammer problem…have installed these plugins:
    Buddypress Humanity
    Really Simple Captcha
    Si Captcha Anti-Spam
    Stop Spammer Registrations

    And I’m STILL getting spammers! I do currently have 2 fields on my registration form that are supposed to guard against spam…you can see it at http://www.mommychats.com I THINK I have them configured right…But I am still getting people joining that then message me with garbage like this:
    “Hello
    I saw your profile today and it was so good to me.u know that i am interested to be a friend first.i also believe that coming to you will be a probability of meeting that very love that has been lacking in my entire life. please i will like you to contact me direct to my e-mail address, (grceamslu@yahoo.com) i dont know the posebility of remaing in forum for long time,i will give you a full introduction of my self with my pictures ok. i will be waiting for your mail to my e-mail adsdress(grceamslu@yahoo.com) as you know
    there is no age,race,colour n religion bar when it comes to true love,
    cares Grace.”

    ARGH!!!!!!!!!!!!

    Is the problem that these freaks that post this sort of stuff are actual PEOPLE, and not spambots? Is there ANY way to guard against this sort of things? Oh I’m SOOO frustrated! My members are getting this sort of message as well and I don’t want them to leave me in droves because of this!

    Any tips? I cannot be the only one dealing with this! Sigh!

    Tina

    #23669
    words2us
    Member

    I’m using the BuddyPress Default theme (I don’t know if this would make any difference), and when I was testing out the profiles I noticed that whenever you fill in profile fields, it automatically puts links on the field. When you click the link it automatically searches for all members who have the same field, which is great for some fields, but not for others. For example, I have a biography field where people can put multiple lines in, but it makes no sense for there to be links on the bio.

    Sorry, I’m not expressing myself very well here, but have a look at this link and click on the text in the bio section: http://words2us.com/members/george/profile/

    So is there a relatively quick and easy way to stop the fields being linked automatically? I’m pretty new to html and css.

    #132161
    walkingcloud
    Member

    The Extended Profile Fields do not work? Could this be part of the issue?

    pic

    link to pic
    http://www.totalicious.com/wp-content/uploads/2012/03/adtet.jpg

    #28581

    Topic: API Request

    in group forum Requests & Feedback
    augustknight
    Member

    I would like to request a change that would allow me to create a plugin that expands on the extended profile fields.

    Where:
    Near the end of the save() function in /bp-xprofile/bp-xprofile-classes.php

    What:
    Change the following line:
    do_action_ref_array( 'xprofile_field_after_save', array( &$this ) );
    to:
    do_action_ref_array( 'xprofile_field_after_save', array( &$this, $field_id ) );

    Alternatively, you could set $this->id = $field_id after an INSERT. That way the I can still access the ID field without needing to alter the behavior of the xprofile_field_after_save action.

    This would allow me to write out a field in my custom table that references the newly saved profile field.

    Thank you for your time and the great BuddyPress system!
    Joseph

    EDIT: For some reason I can’t reply to my topic (white screen so I am guessing there is a fatal error).

    Thanks Paul, I will post there. A multiple insert is not an issue as this function only updates or inserts a single row. Here is the current code:

    
    function save() {
    global $wpdb, $bp;
    
    $this->name			= apply_filters( 'xprofile_group_name_before_save',        $this->name,        $this->id );
    $this->description	= apply_filters( 'xprofile_group_description_before_save', $this->description, $this->id );
    
    do_action_ref_array( 'xprofile_group_before_save', array( &$this ) );
    
    if ( $this->id )
    $sql = $wpdb->prepare( "UPDATE {$bp->profile->table_name_groups} SET name = %s, description = %s WHERE id = %d", $this->name, $this->description, $this->id );
    else
    $sql = $wpdb->prepare( "INSERT INTO {$bp->profile->table_name_groups} (name, description, can_delete) VALUES (%s, %s, 1)", $this->name, $this->description );
    
    if ( is_wp_error( $wpdb->query( $sql ) ) )
    return false;
    
    do_action_ref_array( 'xprofile_group_after_save', array( &$this ) );
    
    if ( $this->id )
    return $this->id;
    else
    return $wpdb->insert_id;
    }
    
    #132096
    mralexweber
    Participant

    Okay! Did some troubleshooting as you suggested, Boone, and here’s what I’ve found that seems relevant:
    By default on my install, BP_ENABLE_USERNAME_COMPATIBILITY_MODE was “true”. I’m not sure why. When I explicitly defined it to “false”, MY user profile page worked:
    mysite.com/members/alex-weber/ — and /members/alex-weber-2-2/ did not (more on that in a second)
    also, mysite.com/members/ragnar/ (previously working) does NOT work with compatibility mode = false.

    here’s the relevant fields from the db, maybe this will shed more light…
    `mysql> select user_login, user_nicename, user_url from wp_users where user_nicename like “ragnar%”;
    +


    +


    +


    +
    | user_login | user_nicename | user_url |
    +


    +


    +


    +
    | ragnar | ragnar-2 | http://mysite.com/members/ragnar-2/ |
    +


    +


    +


    +
    1 row in set (0.00 sec)

    mysql> select user_login, user_nicename, user_url from wp_users where user_nicename like “alex-%”;

    +


    +


    +


    +
    | user_login | user_nicename | user_url |
    +


    +


    +


    +
    | Alex Weber | alex-weber | http://mysite.com/members/alex-weber-2-2/ |
    +


    +


    +


    +
    1 row in set (0.00 sec)`

    NB: I manually edited the user_nicename with SQL for Alex Weber to remove the -2-2.

    #28551

    Hey guys,
    Right this could be a long shot but here goes…

    I use the S2 Member plugin to limit access on my website and this changes the way that users sign up – It also has it’s own way of adding new information to the BP Profiles and allows the easy importation of a lot of users at once.

    The problem this has posed is that I have a massive field called ‘Business Description’ that I would very much like to be included in the search function within buddypress but as it’s been created by s2Member it currently isn’t.

    The information is stored in the wp_usermeta table within wordpress and each row has a user_id, a meta_key which for the values I want to be searchable is ‘wp_s2member_custom_fields’ and then the meta_value is stored in this format:

    `a:7:{s:20:”business_description”;s:112:”HERE IS THE BUSINESS DESCRIPTION.”;s:12:”telephone_no”;s:13:”TELEPHONE NUMBER”;s:15:”company_website”;s:0:””;s:9:”address_1″;s:17:”ADDRESS 1″;s:9:”address_2″;s:16:”ADDRESS 2″;s:9:”address_3″;s:9:”Sheffield”;s:8:”postcode”;s:6:”POST CODE”;}`

    (I’ve copied this straight from database so the CAPITAL LETTERS are where I’ve omitted sensitive information.)

    Right now does anybody now how I can modify the buddypress search function to include this data and provide a link to the correct users profile in the search results?

    Many thanks in advance,
    Laurie

    #132058
    allentan
    Member

    I have upgraded to 1.5.5 The registration page remain the same.

    I go to Buddypress>Fields>add new and create a “Name” group, But it Failed. It says there is an error saving the group.

    I change to a BP default Theme, its the same thing, that it doesn’t work.

    How do i create a Name Field Under Profile Name ?
    How to get my registration page to accept User registration?

    #28533
    benstacey
    Member

    Hey I’m in a real rut with a site i’m setting up, I have user info for 1100 users. I need to make a directory for all these users that includes, phone numbers, date of birth, full names etc. And if at all possible a photo album aswell. At the moment I was giong to try and do this via making a buddypress profile for everybody since there will be a discussion board aswell.

    As far as I can see it’s not possible to do this via CSV and would have to be done by hand.
    Is there any way this could be done with some plugin or any other method than by hand?

    Thanks alot, really stuck here.

    #131985
    coreymj78
    Member

    I see several threads on different sites such as this one: https://buddypress.org/community/groups/creating-extending/forum/topic/solved-limit-members-loop-by-profile-fields/

    …where people of successfully filtered the member loop by role, but how to filter it by domain / site?

    #131953
    Hugo Ashmore
    Keymaster

    > I have seen divs used in a premium plugin (buddydev’s cosmicbuddy).

    Do bear in mind though that a ‘div’ is simply an non semantic aggregating element not intended to directly hold parsed character data so you do need a markup structure to hold your fields if not a table construct – which is pretty much a fair use for this data – then a list structure ‘ul’ or ‘dl’ can work.

    #28483
    radovic
    Member

    Hello all,

    I started a migration of a community website using buddy press, from two different hosts, everything went well, all profiles transferred all groups etc..

    in the admin panel, under buddypress–>profile fields I lost all the fields I entered and I have an error message “You have no groups” not even “Base”

    Can anyone tell me how to fix this ?

    PS ; I went to the database I made a query and I found all the information, they exist in the database, but the information is not displayed in the admin and in users profiles

    Thanks for the help

    Radovic

    steilenhang
    Member

    Hi!

    I am pretty new to this. I have just installed WP 3.3.1 and BP 1.5.4. Fresh installation. Then I inported data from our old site which was like four years old. (The data from wp_users, wp_usermeta, wp_bp_xprofile_data, wp_bp_xprofile_fields, wp_bp_xprofile_groups).

    Now I am having sevral problems, all Buddypress related.

    1. New users profiles are empty after registraton.
    2. PM sends to sevral users. If I want to send to one user, buddypress sends it to 2-3 others also.
    3. When users edit and save their profile, the nickname is replaced with userlogin. This problem was fixed if I changed the name of the field back to “Full name”. But I don’t want it like that.

    What did I do wrong? I don’t know if these problems was there before I inported data from our old site. I tried searching the forums but I cannot se any solutions to my problem.

    #131742

    @naijaping — Thanks. I’ll try this. To be sure I’m putting this bp-custom.php in the right place, does it go in the top-level buddypress directory or in one of the subdirectories (like bp-core)?

    #131739

    For the auto link in the profile , put this in your bp-custom.php, if you dont have bp-custom.php, create one in your plugin folder

    function remove_xprofile_links() {
    remove_filter( ‘bp_get_the_profile_field_value’, ‘xprofile_filter_link_profile_data’, 9, 2 );
    }
    add_action( ‘bp_init’, ‘remove_xprofile_links’ );

    Running BP 1.5.4 on WP 3.3.1 in the root directory of a site in development at http://www.CompareSelfPublishingCompanies.com hosted by HostGator. I have not changed any BP code; BP installed only recently (no upgrade). The theme is Atahualpa. Also running MyReviewsPlugIn and some minor ones.

    On my member profiles, there are unwanted active links for no apparent reason. For example, an ordinary string of text is showing as an active link that produces a search on my site of that same string of text. This problem is random across the test profiles I’ve created and I can’t seem to intentionally replicate the problem. Example: http://compareselfpublishingcompanies.com/members/bodi/profile/

    In addition, I need to know how to make the URLs entered into the “website” field into active links that open in a *new* window so this happens automatically. (Member enters website URL and link is created to open in a *new* window.)

    Thank you!

    raytrade3
    Member

    This has probably been asked and addressed, so I apologize in advance. I couldn’t find the answer scanning the forums here…

    I figured out out to get the custom profile data like Last Name and Company into my members-loop. But now I am stuck on the main Activity Feed and News feed.

    I have set up my custom fields already, So, as an example, in my main activity feed, instead of just the First name, I’d like to see First Name, Last Name, Company and whatever other custom fields I want to reference.

    Sorry if this is basic, this is my first BP site. I dug through functions.php, entry, entry-wall, activity wall etc… and just keep getting stuck. Can someone help point me in the right direction?

    #131597
    BlinkyBill01
    Participant

    Thanks for the reply, @djpaul. The only thing I’ve seen recently was for something called BP Group-O-Matic but that seems only to assign groups to join for people that search for a topic.

    Ok, I think I may have found it: https://wordpress.org/extend/plugins/buddypress-groups-extras/

    That seems like it would be my next choice to use if I can’t find something exactly like Extended Profiles. While that allows the creation of more custom fields, it leaves the types of fields up to the user. I’m looking to be able to, as the admin, create the custom fields that are available to all groups, in the same fashion as the Extended Profiles custom fields.

    I’ll look into this one a bit more.

    #28300
    David Cavins
    Keymaster

    I’d like to exclude a few fields from the user profile output loop, and after digging around, bp_has_profile() takes into account an “exclude_fields” argument, but I can’t figure out how to pass that argument in from the loop that builds the profile page.

    Thanks for your help,

    -David

    @mercime
    Keymaster
    mark2741
    Member

    I’m trying to develop a site with Buddypress for the first time. I plan on doing some more research but for now have been putting together a basic site and so far it’s amazing how well it works! One question (for now!):

    I know how to add custom fields for member profiles/registrations but I want to eventually have a page where site visitors can filter by country, then state/province/other locality. I looked and did not find a plugin that enabled a dropdown for countries and localities. I’d be surprised if one didn’t exist so thought I’d ask here before having to get a list of every country and manually entering them into a dropdown selection custom field : (

    mark2741
    Member

    I’m trying to develop a site with Buddypress for the first time. I plan on doing some more research but for now have been putting together a basic site and so far it’s amazing how well it works! One question (for now!):

    I know how to add custom fields for member profiles/registrations but I want to eventually have a page where site visitors can filter by country, then state/province/other locality. I looked and did not find a plugin that enabled a dropdown for countries and localities. I’d be surprised if one didn’t exist so thought I’d ask here before having to get a list of every country and manually entering them into a dropdown selection custom field : (

    #131372
    aces
    Participant
    #28261
    lesargotiers
    Member

    I have already downloaded the user type lite but it didn’t go as far as I needed it to. I am looking to make my user profile groups selectable. In a sense, I would like them to choose a type (Fan, Band, or Venue) And have certain profile fields (name and age vs. band name and date formed) assigned to them. Is there a plugin or a tutorial out there that will help me do this?

    #131356
    jaydyok
    Member

    Hmmm, thanks. Looks like they are part of the Buddypress Profile Privacy plugin. Did not know that this plugin also had these settings. So here is what happens:

    Setting privacy on individual profile fields in the profile editor works
    Setting privacy setting in Profile -> Settings -> Privacy does nothing at all.

    Maybe it’s something I’m doing / not doing, I don’t know.

    Is Buddypress Profile Privacy 1.4.2

    Will investigate further.

Viewing 25 results - 3,626 through 3,650 (of 5,698 total)
Skip to toolbar