Forum Replies Created
-
You can hide fields from being edited easy. in members/single/edit.php you can exclude fields by ID. Use comma separated list.
if ( bp_has_profile( 'profile_group_id=' . bp_get_current_profile_group_id() . '&exclude_fields=2,3,4' ) ) :full code example https://gist.github.com/modemlooper/5816548
email tweaks you’d like to modemlooper @ gmail.com
Try these:
remove_filter( 'bp_get_activity_content_body', 'autoembed', 8 ); remove_filter( ‘bp_get_activity_content’, ‘autoembed’, 8 );In the future, please refrain from replying to a 3 year old topic. Create a new one.
BuddyPress profile fields are searchable.
Try these:
remove_filter( 'bp_get_activity_content_body', 'autoembed', 8 ); remove_filter( ‘bp_get_activity_content’, ‘autoembed’, 8 );In the future, please refrain from replying to a 3 year old topic. Create a new one.
Version on codex is not fully working on BuddyPress 1.7. Also, it may not work on your device. And, you need to read the setup instructions.
That plugin won’t allow same user account to use multiple profiles.
Sounds like a defect in BuddyPress. So your saying after you click activation link in email and try to login using sidebar login form it says activation key is invalid?
BuddyPress allows any oEmbed provider that WordPress allows. http://codex.wordpress.org/Embeds
I think the reason I’m having funkiness is because the remove links code is inside a function that only runs if a wp option is true.
I’m not sure but it works for me when using init. I’m also calling the file the function is in by using bp_include
Did you click link from email sent after signup?
use init not bp_init
function remove_xprofile_links() { remove_filter( ‘bp_get_the_profile_field_value’, ‘xprofile_filter_link_profile_data’, 9, 2 ); } add_action( ‘init’, ‘remove_xprofile_links’ );You shouldn’t edit those files. You can add settings with a plugin. If you want that as a core feature then post on http://buddypress.trac.wordpress.org then submit a patch of working code.
If you are on BuddyPress 1.7 you need bbPress for forums. Do you have that installed?
BuddyPress 1.7 + no longer has forums unless you had a previous version with group forums active. I guess you could install an old version activate forums and then upgrade to get the old forums.
looks like your theme is hard handing your form css. you will need to find the css and edit it.
BuddyPress no longer bundles bbPress therefore has no forums. You can install bbPress separately. There is a setting in bbPress to have a forum for each BuddyPress group.
read this: http://buddypress.org/support/topic/extending-activity-how-to-store-additional-info/
it may help you understand how to add meta to activity
$user_id = get this from WordPress;
xprofile_get_field_data( $field, $user_id );The way you are getting members id is only good on member pages. If you are on a blog post you can get the author id, if you want logged in user id get that.
when you switch theme to bp-default does it do the same?
It’s most likely an issue with an older browser. What version of android are you running?
which BuddyPress Media plugin as there are two with the same name.
Mine isn’t. The others not sure.
it totally works.
I used this:
define ( 'BP_AVATAR_DEFAULT', 'http://www.petfinder.com/wp-content/uploads/2012/11/101418789-cat-panleukopenia-fact-sheet-632x475.jpg' );view it here:
http://demo.taptappress.com/membersJust plopped the code into bp-custom.php
That plugin you link to takes a silly path using javascript to switch avatar.