Search Results for 'profile fields'
-
AuthorSearch Results
-
March 3, 2010 at 12:49 pm #66509
In reply to: City/Country in Profile Fields
March 3, 2010 at 9:52 am #66488In reply to: City/Country in Profile Fields
Paul Wong-Gibbs
KeymasterYou need to add them in manually, either via the page or directly in the DB. I suppose this could be achieved with a plugin, or in a future BP version.
I’m moving this post to the Ideas forum.
March 3, 2010 at 9:38 am #66486In reply to: City/Country in Profile Fields
draganbabic
MemberI’d definitely like to see a solution to this as well.
March 3, 2010 at 8:11 am #66480In reply to: Alternative Usage of a Profile Field
draganbabic
MemberThanks for the help r-a-y, I found this solution:
[IN BP_CUSTOM.PHP]:
function custom_xprofile( $field ) {
echo bp_custom_get_member_list_xprofile_data( $field );
}
function bp_custom_get_member_list_xprofile_data( $field ) {
global $site_members_template;
return xprofile_get_field_data( $field, $site_members_template->member->id );
}
[IN CHILD THEME FILE]:
<?php custom_xprofile('Header Image') ?>
March 2, 2010 at 11:38 pm #66437In reply to: Alternative Usage of a Profile Field
draganbabic
MemberHi guys,
thanks for the ideas. So far I got this running:
<?php if ( bp_has_profile('profile_group_id=2') ) : ?>
<?php while ( bp_profile_groups() ) : bp_the_profile_group(); ?>
<?php if ( bp_profile_group_has_fields() ) : ?>
<?php while ( bp_profile_fields() ) : bp_the_profile_field(); ?>
<?php if ( bp_field_has_data() ) : ?>
style="<?php bp_the_profile_field_value() ?>"
<?php endif; ?>
<?php endwhile; ?>
<?php endif; ?>
<?php endwhile; ?>
<?php else: ?>
<?php endif;?>
And this indeed outputs the desired value, but it is also wrapped in a paragraph and autolinked. Please do note that I have no idea what I am doing here, weather it is valid, good or anything else, this just got the job done, so it’s a starting point.
I have searched the forum and found this code that is supposed to remove the autolinking:
<?php
function remove_links(){
remove_filter( 'bp_get_the_profile_field_value', 'xprofile_filter_link_profile_data', 2 );
}
add_action( 'plugins_loaded', 'remove_links' );
?>
However it doesn’t do that once placed in bp-custom.php
Any pointers?
March 2, 2010 at 10:22 pm #66422In reply to: Alternative Usage of a Profile Field
r-a-y
KeymasterYou can use an xprofile field, I see no harm in it.
Of course, there are other ways.
I believe, by default, all xprofile fields under “Base” are required.
If you don’t want it required, create a new xprofile group to house this new field.
To check the xprofile value of this new field, you’ll have to do a little manipulation in PHP with it. You could use substr() to check for file extensions.
March 2, 2010 at 5:53 pm #66367In reply to: Tweetstream (twitter plugin) Beta testers needed!
Anointed
Participant@blackphantom nope, I am absolutely positive that I have both the key fields filled in on the admin page. I even created new apps with new keys to test it out, but it made no difference. I still get the error when clicking the profile tweetstream user link.
Here is a screenshot of the admin area:
March 2, 2010 at 1:44 pm #66327In reply to: How to control spam registration?
Windhamdavid
ParticipantAll in all, here’s my approach that I use on MU/BP sites ~
1) modify the register/register.php wp-signup.php hardcoded default text and url slugs.
2) enable xprofile and require additional fields upon registration.
2) use a captcha ~ i’m fond of ReCatcha
3) make sure you and check the NO setting under “Allow blog administrators to add new users to their blog via the Users->Add New page. ” in wp-admin/wpmu-options.php “Admin > Site Options”
4) I ban or limit the registration domains (also in Admin > Site Options) so that the commonly used spammer domains are blocked from registration and then I add an email contact for owners of these addresses to manually request registration. I hide the email address from bots with HiveLogic EnKoder
5) I then firewall off entire blocks of IP’s from my servers from commonly used spammer IP ranges you can find at sources like spamhaus.org .. and considering that these are one language sites, the need for access for the IP blocks on the pan asia network or eastern europe are unlikely. If you have a multilingual site, this might cause issues to very few users. Cpanel, Plesk, BSD, etc have tools to do this.. if you’re on a shared server, ask your hosting provider if they can do it for you, and they may be likely doing it already.
6) I also recommend using Askimet.
March 2, 2010 at 9:28 am #66291In reply to: How to control spam registration?
Sam Steiner
ParticipantThis is getting worse and worse. I just launched my first BuddyPress site and am getting spammer registrations although I have additional required profile fields and SI Captcha installed.
Sadly, the article mentioned (linked) above is not available anymore (I guess the spammers took down that site) and judging by the responses here there still seems to be no known solution to the spammer problem with WPMU/BuddyPress.
I spoke to someone on Twitter who confirmed that the spam problem started when activating BuddyPress – this would be in contradiction to remarks from Andy, I’m afraid. Anyhow: after reading comments here there seems to be a hole in the system somewhere.
(I guess the spammers have been clever enough not to spam testbp.org
)
March 1, 2010 at 10:05 pm #66211In reply to: Extending Profiles
mlovelock
ParticipantFor more specific help you’d need to give more specific details –
i want to do all sorts of things to profile fields…..
… is a bit vague.
Also, you’re effectively asking someone to teach you how to write code. What you’re after probably requires a more in-depth answer than you’re likely to get here in the forums.
Perhaps you ought to download and break down / delve into the custom profile filters plugin and start from there – that’s an example of how to do these things in code – combined with the codex etc should get you started.
March 1, 2010 at 6:35 pm #66169In reply to: Extending Profiles
arnonel
ParticipantWhat i want to do is add different html/css/etc for a particular field….
eg: adding a map…
i know there are these plugins,….but they are merely examples of what i want to achieve in code…
i want to do all sorts of things to profile fields….. and need to know how to do things like this in code…
March 1, 2010 at 4:58 pm #66141In reply to: Extending Profiles
mlovelock
ParticipantIf you’re using the plugin I mentioned and you want to do exactly what you mentioned above, you could probably just add it into the SN arry in the plugin file, thus:
$social_networking_fields = array( // Enter the field ID of any field that prompts for the username to a social networking site, followed by the URL that must be appended to username to create a link to the user's profile on that site. Thus, since the URL for the profile of awesometwitteruser is twitter.com/awesometwitteruser, you should enter 'Twitter' => 'twitter.com/'. Don't forget: 1) Leave out the 'http://', 2) Include the trailing slash (/) if needed to make a valid URL, and 3) to separate items with commas
'Twitter' =>'twitter.com/' ,
'Delicious ID' => 'delicious.com/' ,
'YouTube ID ' => 'youtube.com/' ,
'Flickr ID ' =>'flickr.com/' ,
'FriendFeed ID' => 'friendfeed.com/',
'Facebook' => 'facebook.com/',
'MySpace' => 'myspace.com/',
// your site's Company Field
'Company' => 'google.co.uk/search?q='
);
// You shouldn't need to touch anything below this line.Of course I haven’t actually tried this myself. The alternative is to extend the plugin a little with a function that takes that company field and does whatever you want to do with it.
March 1, 2010 at 2:47 am #66069In reply to: calling specific profile fields individually
joshuarg
MemberThis works great! But I am wondering if there is a way to have it call the value depending on the user that is currently logged-in.
I thought something like this might work… <?php echo bp_loggedinuser_xprofile_get_field_data(’10’); ?> but no such luck.
Any ideas?
February 27, 2010 at 10:29 am #65824In reply to: Location Profile Field
xspringe
ParticipantThere used to be the possibility to use pre-built fields to the registration form (as described here: https://buddypress.org/forums/topic/what-happened-to-add-prebuilt-field), which would take care of at least part of this problem. But it appears this is no longer supported for 1.2.
So I definitely support the request for the ability to add pre-built registration fields.
February 26, 2010 at 10:26 pm #65773r-a-y
KeymasterAhh sorry about that!
I thought you were talking about the registration page!
Move /bp-themes/bp-default/members/single/profile/profile-loop.php to your child theme and adjust.
February 26, 2010 at 8:51 pm #65757r-a-y
KeymasterMove the /bp-themes/registration/register.php to your child theme.
Edit as needed.
February 26, 2010 at 9:40 am #65679In reply to: Buddypress forum (bbpress) profile custom fields
enzyad
Participantany?
February 25, 2010 at 6:03 pm #65568In reply to: Multiple Profile Group Fields in Registration
Fabiano Arruda
ParticipantI have the same question
February 25, 2010 at 12:12 pm #65492abcde666
Participantsorry if my following questions are off-topic:
when I do create a “Private Group” on Group-creation:
– are the members-data who have joined this “Private-Group” visible to search-engines like Google ?
– are the user-images (avatar-images) and user-Profile-Fields of “Private-Group-Members” visible to search-engines ?
– is the user-activity (e.g. Permalink-comments) within a “Private Group” being exploited to search-engines or is it hidden from search-engines ?
– are all data from “Private-Groups” are actually hidden from other members within an installation ?
So if “Private Groups” would be hidden from search-engines, this would be perfect “Privacy” – just need to setup “Private-Groups” only, instead of “Public-Groups” ?
Many thanks.
February 25, 2010 at 2:11 am #65421In reply to: Profile details and custom links?
dwpers
ParticipantNevermind we hacked the bp-core and did custom rewrites for everything. Each list item for the profile fields was set to a custom url. Fun stuff!
You can see it in action @ http://www.fanspeak.com and go to a members profile and click on any non NCAA sports team, it will load to a custom team page with RSS feeds and stats.
February 24, 2010 at 2:15 pm #65292In reply to: SPAM Domains to add to your block list
bbrian017
ParticipantI simply did the easy things. I added yes or no questions. I put in default profile fields they would have to answer and I added a date of birth field.
What I don’t understand is right now I have registrations closed and they are still signing up.
Registration has been closed for almost an hour and I still got 8 or 9 spam accounts over the last 40 minutes.
How is that possible?
February 24, 2010 at 2:11 pm #65291In reply to: Location Profile Field
Jean-Pierre Michaud
Participantjust a note, nick.. .stop bumping your own posts after 2 minutes, they will not gain in popularity, they will just gain you some kick.
this is a good suggestion for a plugin, having chained selections is good… http://dynamicdrive.com/dynamicindex16/chainedselects/index.htm and can be applied to a form if well built… you need a new interface for the custom fields to do so.
February 23, 2010 at 9:10 pm #65156In reply to: Extended Profile fields vulnerability?
edelwater
ParticipantThanks, if there is an intermediate quick fix I could temporary put it in.
February 23, 2010 at 1:11 am #64943In reply to: Extended Profile fields vulnerability?
Andy Peatling
KeymasterNot a security vulnerability, but looks like a value check is missing somewhere, I’ll fix this.
February 22, 2010 at 9:29 pm #64900dwdutch
ParticipantThanks, David. I’ll pursue these options then let you know what happens.
As for login, Id like to use the “Login with Ajax” widget because it has a “Forgot password” option and it allows for redirects to custom URL on login and/or logout. I’d like to stay away from the WP screen, if possible.
In fact, that’s yet another challenge: how to give them access to create Posts without seeing the WP-admin screens — especially since I want any profile changes to be done via BP (so they’ll see their xprofile fields) rather than the more simplistic WP fields. alas… for now, i need to get some of them started and I’ll have to save that battle for another day.
This blog is for a private group of about 20 people.
-
AuthorSearch Results