Search Results for 'profile fields'
-
AuthorSearch Results
-
November 13, 2008 at 1:32 pm #33681
In reply to: Custom Profile Fields
thezohan10
MemberPio, thanks for your answer, i solved it, of course creating a CVS file for my option.
Thanks!
November 12, 2008 at 3:37 pm #33673In reply to: Custom Profile Fields
thezohan10
MemberDamn, i must have missed some trunk file grrrrrrrrr
couse it does not work for me, i´ll take a deep look at that. Thanks!
November 12, 2008 at 3:32 pm #33670In reply to: Custom Profile Fields
Alessandro Fazzi
ParticipantA bit of trunk ago it worked for me…so I think you can try!
October 29, 2008 at 4:19 pm #33505In reply to: Where does the Profile data go
Andy Peatling
KeymasterProfile 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
October 29, 2008 at 12:48 pm #33498iprashant
MemberOk 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.
October 15, 2008 at 7:17 pm #33354In reply to: How to customize home page
ron_r
MemberDid you set up the profile fields under site admin?
October 12, 2008 at 1:05 am #33315In reply to: Can’t add new profile field
Nola1974
MemberOK, I completely re-installed everything and I can add new profile fields now. Must have been something in the old database.
October 9, 2008 at 4:18 pm #33274In reply to: When we can download the Home Theme Mockup?
Andy Peatling
KeymasterRight 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.
-
AuthorSearch Results