Search Results for 'profile fields'
-
AuthorSearch Results
-
June 4, 2013 at 7:22 am #165340
In reply to: Display Profile Groups
@mercime
Participant@ebraxton30 Change to Twenty Twelve theme and deactivate all plugins except BuddyPress to test if your installation is working as expected -> https://codex.buddypress.org/user/before-installing/
Extended Profiles https://codex.buddypress.org/user/buddypress-components-and-features/extended-profiles/
Example of User Profile page which includes four profile field groups containing many profile fields each. http://testbp.org/members/mercime/profile/public/ Only the “General” profile group shows up during registration. Feel free to register at testbp.org, the official BuddyPress test site.
June 4, 2013 at 6:19 am #165337In reply to: problem sidebars theme Nebraska
millo
Participanthi,
no activate BP template pack plugin. It is new installation.General Information
WordPress Version: 3.5.1
URL: http://redpublica.loading.es
Theme Version: 1.2
Framework Version: 2.1
PHP Version: 5.4.15Installed Plugins
ajax-event-calendar/ajax-event-calendar.php
backupwordpress/plugin.php
bbpress-enable-tinymce-visual-tab/init.php
bbpress-like-button/bbpress-like.php
bbpress/bbpress.php
bp-avatar-suggestions/bp-avatar-suggestions.php
buddy-bbpress-support-topic/buddy-bbpress-support-topic.php
buddypress-activity-plus/bpfb.php
buddypress-followers/loader.php
buddypress-profile-tabs/bp-profile-tabs.php
buddypress-twitter/loader.php
buddypress-xprofile-custom-fields-type/bp-xprofile-custom-fields-type.php
buddypress/bp-loader.php
carousel-without-jetpack/jetpack-carousel.php
contact-form-7/wp-contact-form-7.php
duplicate-post/duplicate-post.php
launchpad-by-obox/index.php
login-with-ajax/login-with-ajax.php
revslider/revslider.php
tinymce-advanced/tinymce-advanced.php
use-google-libraries/use-google-libraries.php
wordpress-importer/wordpress-importer.phpThanks
June 2, 2013 at 1:50 am #165196In reply to: HTML in profile fields no longer allowed?
joejozwowski
ParticipantI am running into this problem as well, or maybe just a different form of this same issue.
I have several fields that ask for a URL (to a YouTube Channel or Tumblr blog) and instead of the link going tohttp://www.youtube.com/user/myChannel
this link is generated
http://mysite.com/members/?s=www.youtube.com%2Fuser%2myChannel
June 1, 2013 at 9:04 am #165163In reply to: How to add additional profile fields in buddypress?
@mercime
Participant@adnan0777 BuddyPress Codex is your friend https://codex.buddypress.org/user/buddypress-components-and-features/extended-profiles/
May 30, 2013 at 5:59 pm #165078In reply to: Profile Fields not displaying
gediweb
ParticipantIs there a way to show the new groups at registration? I know I can add all my fields to Base, but I want them separated into sections
May 30, 2013 at 9:20 am #165057maddogmcewan
Participant@jancbeck – i haven’t done much lately to improve the plugin, for me I think next step would be to add the ability to edit fields, then step 2 would be to incorporate some xprofile fields – if i do anything I am happy to share
May 30, 2013 at 7:48 am #165049In reply to: User profile privacy radio buttons are 'grayed out'
Julian Lamprea
ParticipantThe issue is in the core of the xprofile fields integration that have been added to buddypress with errors.
The problem is in the bp-xprofile-template.php file in the method bp_profile_get_visibility_radio_buttons()
Currently that function is rendering the visibility levels as radiobuttons, but is using the same id for all radiobuttons, so, if you want to allow multiple field with visibility options, the current version don’t works because the IDs of each radiobutton is repeated.
The current code of this method is:foreach( bp_xprofile_get_visibility_levels() as $level ) { $checked = $level['id'] == bp_get_the_profile_field_visibility_level() ? ' checked="checked" ' : ''; $html .= '<li><label for="see-field_' . esc_attr( $level['id'] ) . '"><input type="radio" id="see-field_' . esc_attr( $level['id'] ) . '" name="field_' . bp_get_the_profile_field_id() . '_visibility" value="' . esc_attr( $level['id'] ) . '"' . $checked . ' /> ' . esc_html( $level['label'] ) . '</label></li>'; }and the correct way to do it should be:
foreach( bp_xprofile_get_visibility_levels() as $level ) { $checked = $level['id'] == bp_get_the_profile_field_visibility_level() ? ' checked="checked" ' : ''; $html .= '<li><label for="see-field_' . esc_attr( $level['id'] ) . '"><input type="radio" id="see-field_' . esc_attr( $level['id'] ) . '" name="field_' . bp_get_the_profile_field_id() . '_visibility" value="' . esc_attr( $level['id'] ) . '"' . $checked . ' /> ' . esc_html( $level['label'] ) . '</label></li>'; }Notice how I’m adding the correct ID for each radiobutton, thus the visibility options for each field will have the respective ID and will works!
I’m not sure why this issue is not related in the bugs list.
May 30, 2013 at 6:58 am #165048cappazushi
ParticipantThe developer’s site may be lame, but he developed a much needed (if incomplete) plugin for BuddyPress. It isn’t slowing down my test site, by the way.
I’d just like to figure out to modify it to work…well, fully. I’ll be using it for listing collections, by the way — not resumes.
If you can’t help, then, thanks for the bumps. Be nice.
May 30, 2013 at 6:19 am #165046bp-help
Participant@cappazushi
Matter of fact that particular users site moves at a snails pace so in reality whatever they did was garbage because who wants to wait for a site to load when it takes 2-3+ minutes?May 30, 2013 at 5:58 am #165045bp-help
Participant@cappazushi
Don’t listen to that BS. If that person that replied above that mentioned that plugin really wanted to help then they would period. That user is a phony and I will leave it at that!May 30, 2013 at 4:34 am #165041cappazushi
ParticipantI know this thread is over a month old, but I have a question about this plugin. Has anyone successfully modified it to allow for the editing of entries? It looks like the only options are add and delete. “Edit” would really make this plugin complete, though.
I plan on using it for something a little different than resumes, and my using will probably be editing their entries a lot — so forcing them to delete and rewrite them each time would probably make me public enemy number one.
May 29, 2013 at 11:28 pm #165030Henry
MemberI’ve done this too! Many times. Very annoying i agree!
May 29, 2013 at 8:27 am #164975In reply to: Profile Fields not displaying
mewrd
Participanthi i saw this solution does it help?
edited :
If you create a new profile group, then you could move some of those profile fields to these new groups and it won’t show up on all a once in the registration page.
To create a new profile group, login to the WP admin dashboard and navigate to “BuddyPress > Profile Fields” page. Next, click on the “Add New Group” button located in the header text.
here is the link
https://buddypress.org/support/topic/register-page-limit-number-of-profile-fields-shown/May 24, 2013 at 4:41 pm #164712In reply to: [Resolved] change "primary" field title
@mercime
Participant@caspergrimaldi go to admin dashboard menu Users > Profile Fields
Click on Edit Group Link
change “Base” name to what you want
https://codex.buddypress.org/user/buddypress-components-and-features/extended-profiles/May 24, 2013 at 6:09 am #164686PMWebDevelopment
ParticipantThere is a display:none; in the inline styling. Have you figured out how to resolve the issue? I am having the same issue.
May 18, 2013 at 10:51 am #164274hiboy
ParticipantHi bb-help, thanks again for your reply, really appreciate it, as i am abit panick.
here the full story,i started off with a buddypress theme and buddypress, I do my development from there to fit my needs, and i install plugin and about to done with my site after several weeks. Well the buddypress folder was renamed to buddypress2 when i first started developing on this site. everything all fine and working well. I then install this plugin = https://wordpress.org/extend/plugins/buddypress-xprofile-custom-fields-type/, and then error start appear at the top of my backend and frontend, so i immediately rename this folder in ftp, it got deactivated, but error still shown, then i delete this plugin, error still shown, then i deactivate buddypress, error still shown, deleted buddypress, error still shown, and i also replace functions.php in my wp-includes, and here where i stop. the error was still there.
May 18, 2013 at 6:57 am #164248bp-help
Participant@hiboy
Easy fix so don’t panic. Go into your server and rename that plugin. I always append it with 2 capital X’s to the beginning of the plugin name which will deactivate the plugin it can be anything it is just a habit for me.
In your example change the folder containing the plugins name from:
buddypress-xprofile-custom-fields-type
TO:
XXbuddypress-xprofile-custom-fields-type
You can then get back into your site and the plugin will be deactivated and you can delete it via the dashboard if you choose.May 15, 2013 at 3:46 am #164010In reply to: Missing Profile Fields
ebraxton30
ParticipantThank you for responding.
I answered the version of Buddypress when you directed me to respond to all of the questions after my initial inquiry.
I did troubleshoot in Twenty Twelve as well as the BP Default theme and still am experiencing the same issues.
The reason I did not consider this to be an issue with the plugins and perhaps a question of character max level, is because I have created several test profiles and am not experiencing this problem. These profiles were created in the same exact way as the true NEW user profiles. That is what I meant by “test profiles.” So…I will ask again…Is it possible that there is a limit on the number of characters available in a profile? Or, is there some sort of pagination option? I would provide the URL but it is an intranet site for and I do not want to include it here. Could I possibly send you a personal message?
Thank you in advance for your help.
May 14, 2013 at 7:55 pm #163997In reply to: Images not syncing between buddypress and wordpress
cmatters
ParticipantI want to know this too.
Would be nice if there would be check marks in the WP User Admin to select which user meta would also appear in BP Profile.
Vice-versa, if custom profile fields made in BP could then appear in WP Admin.This type of syncing seems necessary as WPSocialLogin populates useful info into the User WP Admin but there is no easy way to now get those WP User Admin fields into the BP Profile. (and I’m sure other plugin that are design to work with WP Admin don’t populate BP profiles). Seems like this “complete” syncing does not exist.
May 13, 2013 at 7:43 pm #163909In reply to: Registration form messed up
@mercime
Participant@filipmedia it’s got to do with the page template you are using. Your BuddyPress Register page should have the HTML structure of your site’s regular Pages like http://www.geek.hr/suradnja/ but it’s not so. The Register page is within the #footer div when it should be in the #content div. Are you using a Page Template instead of the default page.php for your register page?
Change to Twenty Twelve theme to see how Register page should look like per xProfile fields/groups you added for your community.
May 13, 2013 at 7:28 pm #163907In reply to: Problems with the registration page
shanebp
Moderatorfunction show_xprofile_fields ( $user ) { $field_value = xprofile_get_field_data( 'x', $user->ID, $multi_format = 'comma' ); echo "x: " . $field_value . '<br />'. $field_value = xprofile_get_field_data( 'y', $user->ID, $multi_format = 'comma' ); echo "y: " . $field_value . '<br />'. } add_action( 'edit_user_profile', 'show_xprofile_fields' );May 13, 2013 at 7:04 pm #163906In reply to: Problems with the registration page
Ben Hansen
Participantso would that look like this:
function show_xprofile_fields ( $user ) { $field_value = xprofile_get_field_data( 'x,y', $user->ID, $multi_format = 'comma' ); } add_action( 'edit_user_profile', 'show_xprofile_fields' );where x and y are my field names? thanks & sorry i don’t jack when it comes to php.
May 12, 2013 at 4:15 pm #163821In reply to: External links in profile fields
Ben Hansen
Participantnot at all 🙂
May 12, 2013 at 9:06 am #163808In reply to: External links in profile fields
aldereteka
ParticipantThanks for suffering my stupidity, @ubernaut. It works now.
May 11, 2013 at 9:25 pm #163793In reply to: External links in profile fields
Ben Hansen
Participantyou have to put the full url with http:// and all that
-
AuthorSearch Results