Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'profile fields'

Viewing 23 results - 5,676 through 5,698 (of 5,698 total)
  • Author
    Search Results
  • #34045
    Andy Peatling
    Keymaster

    It will be there, I just need to link them up to the member directory search.

    #2509
    Michael Berra
    Participant

    I don’t know if I get that right. I didn’t find it anymore in the roadmap… Wasn’t there a functionality planned, that the profile fields would be links in the Version 1.0? Example: Country would be Switzerland. I can klick on Switzerland and all the members show up who live there…

    I thought that would be a great and important function. But is it dumped? Or can someone open my eyes please :-)?!

    #33963
    Andy Peatling
    Keymaster

    This was likely removed by mistake, I will add it back now. I was changing things with JS and CSS inclusion according to WP coding standards.

    #33962
    danf-1
    Participant

    I confirmed via javascript debugger that indeed the javascript ‘show_options’ function is not defined. This function is in the bp-xprofile/js/admin.js file used to create the drop down options for new fields.

    So I had to add the following to the bp-xprofile/bp-xprofile-cssjs.php file in order for it to work. This may not be where it is suppose to go, but it works for me. I assuming this worked at some point, but somehow got removed???? Hopefully this gets added back in for next trunk. Its not in r577.

    function xprofile_add_admin_js() {

    if ( strpos( $_GET, ‘xprofile’ ) !== false ) {

    echo ‘<script type=”text/javascript” src=”‘ . site_url() . ‘/wp-content/mu-plugins/bp-xprofile/js/admin.js”></script>’;

    }

    }

    add_action( ‘admin_head’, ‘xprofile_add_admin_js’ );

    #33948
    revolutionfrance
    Participant

    I am having exactly the same problem…any ideas anyone?

    #2477
    danf-1
    Participant

    I just downloaded bp and got it working pretty easily into site. Very excited to start using it with new site being launched in a few months.

    In looking at the profile fields in admin – the child info for the fields are not working properly (i.e. I don’t see anything happen when I select one of the dropdown/checkbox/radio etc fields and get an error when saving that I need to select options).

    In digging deeper, I see that the html is being generated properly and the code is there with style=”display: none” so that they are hidden until selected, but I don’t see a reference to the bp-xprofile/js/admin.js script anywhere in the html output. Thus, its not executing the appropriate javascript to show the appropriate info.

    I also looked at the bp-xprofile-cssjs.php file and don’t see any addition of the js/admin.js script being added.

    Am I missing something? I assume this would be working for others, but I don’t see how it could be working for others based on my analysis of the code.

    Im using trunk-r571.

    Any insight into why this is not showing up? Thanks.

    gogoplata
    Participant

    The basics of what I did was edit bp-xprofile.php and removed these lines:

    $sql[] = “INSERT INTO “. $bp . ” (

    id, group_id, parent_id, type, name, description, is_required, field_order, option_order, order_by, is_public, can_delete

    ) VALUES (

    1, 1, 0, ‘textbox’, ‘” . __( ‘Public Display Name’, ‘buddypress’) . “‘, ”, 1, 1, 0, ”, 1, 0

    );”;

    $sql[] = “INSERT INTO “. $bp . ” (

    id, group_id, parent_id, type, name, description, is_required, field_order, option_order, order_by, is_public, can_delete

    ) VALUES (

    2, 1, 0, ‘textbox’, ‘” . __( ‘Last Name’, ‘buddypress’) . “‘, ”, 1, 2, 0, ”, 1, 0

    );”;

    Then I went into my database and deleted those fields. Once those are gone BP defaults to using the username.

    #33740

    In reply to: Custom Profile Fields

    Alessandro Fazzi
    Participant

    Sounds good!

    :)

    #33684
    Andy Peatling
    Keymaster

    These values are included in the PO file. If your translation file is present upon first install – then it should store the translated values. Can someone check this? This will change, it’s not ideal.

    #33681

    In reply to: Custom Profile Fields

    thezohan10
    Member

    Pio, thanks for your answer, i solved it, of course creating a CVS file for my option.

    Thanks!

    #33673

    In reply to: Custom Profile Fields

    thezohan10
    Member

    Damn, i must have missed some trunk file grrrrrrrrr :) couse it does not work for me, i´ll take a deep look at that. Thanks!

    #33670

    In reply to: Custom Profile Fields

    Alessandro Fazzi
    Participant

    A bit of trunk ago it worked for me…so I think you can try! ;)

    #2420
    thezohan10
    Member

    Andy,

    I see i can add a RADIOBUTTON field, under the PROFILE FIELDS administration.

    Is that working?

    Thanks

    Z

    #2418
    thezohan10
    Member

    Dear Andy,

    Is there any way to rename the “BASIC” and “First Name” and “Last Name” of the profiles without breaking everything? i mean, i need to show “Básico”, “Nombre”, “Apellido” (Spanish).

    Thanks,

    Z

    “Don´t mess with the Zohan”

    #2385

    After installing BP, I created a homebase and got this error message when I went tothe homepage for my user:

    Fatal error: Call to undefined function bp_the_avatar() in C:wampwwwwpmuwp-contentthemesbuddypressprofileindex.php on line 8

    Has anyone experienced this?

    All BP plugins have been installed in the MU_Plugins directory.

    Also, I tried to follow the direction and create user profile fields ( SITE ADMIN > PROFILES ) but I could not find any Profile option to adjust.

    Any advice?

    #33505
    Andy Peatling
    Keymaster

    Profile data is stored in the following tables:

    wp_bp_xprofile_groups – The profile groups

    wp_bp_xprofile_fields – The fields, what type they are, the name etc.

    wp_bp_xprofile_data – The data for each user for specific fields

    Avatars are stored in:

    wp_usermeta – with the meta_keys:

    ‘bp_core_avatar_v1’ – the URL to the avatar thumbnail

    ‘bp_core_avatar_v1_path’ – the filesystem path to the thumbnail

    ‘bp_core_avatar_v2’ – same as v1 but the full size image

    ‘bp_core_avatar_v2_path’ – same as v1 but the full size image

    #33498
    iprashant
    Member

    Ok got the solution.

    I want to pin point some thing here plz let me know if im going wrong.

    I wanted activity should display in local languages also.

    So i have updated

    1. /bp-activity/bp-activity-templatetags.php

    2. wp_bp_activity_sitewide table

    Updates are as follows.

    1.

    here coz of local language when we create post url getting converted to utf so its long test with sting and special chars that is the reason in the formation of site wide activity sprintf is used so it is not allowing big utf type url.

    In function bp_activity_content_filter

    I commented //$content[0] .= ‘%s’;

    and in function bp_activity_insert_time_since

    return sprintf( $content, ‘  ‘ . bp_core_time_since( strtotime( $date ) ) . ‘ ‘ . __(‘ago’, ‘buddypress’) );

    replaced with

    return $content . sprintf( “%s”, ‘  ‘ . bp_core_time_since( strtotime( $date ) ) . ‘ ‘ . __(‘ago’, ‘buddypress’) );

    2. In wp_bp_activity_sitewide table updated content field with utf8_general_ci

    This is for site wide activity to work with local languages. For profile make changes with other tables related to user_activities all other works fine.

    #2337
    iprashant
    Member

    Hello, I want to register this when i submit sign up form and for any reason sign up form gets error country field is reset. this happens on user profile page also like if i want to change my profile i selected country and hit submit button it says saved and it worked but in drop down list country is not showing up like other fields. This small prob hope will be clear soon.

    #33354
    ron_r
    Member

    Did you set up the profile fields under site admin?

    #33315
    Nola1974
    Member

    OK, I completely re-installed everything and I can add new profile fields now. Must have been something in the old database.

    #33274
    Andy Peatling
    Keymaster

    Right now the basics on the front screen are done and it is live at: http//testbp.org

    If you get hold of the trunk, it was checked in last night.

    I need to use the __() function on the “First Name” and “Last Name” fields so they can be translated – after which you should be able to translate them the same way you translate WordPress. For now, you can simply edit the names in the database – in the “wp_bp_xprofile_fields” table.

    #2248
    ddegraw
    Participant

    I went through “installing step 5” but the ‘Profile’ tab in the Site Admin would not appear. I enabled “Allow new registrations” but the ‘Profile’ tab still would not appear.

    Any suggestions?

    <<<<<< Step 5: Log in as an administrator and create profile fields

    Log into your installation as the administrator and in the back end admin

    area head to:

    – Site Admin > Profiles

    Here you can set up profile groups and fields for users to fill in. Any

    fields you add to the “Basic” group will appear on the signup form along

    with an avatar upload option.

    ** If this is a brand new WPMU install ** you will need to enable

    registrations. Head to:

    – Site Admin > Options

    Check the “Enabled” radio button under “Allow new registrations” and hit

    the update options button. >>>>>

    #2223
    cosmican
    Member

    First of all, you guyz rock! I find BP very impressive and extensible. I am considering BP for my web project, and I definitely want a few more fields to the Groups page. What would be the best way to do it.

    I can edit the Groups plugin, but each new release of the plugin will override my changes. Are there any hooks/filters provided for this purpose?

    In the docs, you mentioned about extending the XProfile component. Is there any such extension possibility to the Groups component?

    I look forward for your response. Thanks!

Viewing 23 results - 5,676 through 5,698 (of 5,698 total)
Skip to toolbar