Forum Replies Created
-
Hi,
I think it not exist
.Hi @henrywright-1,
I think the free version of SeoPress cover 70% of SEO in buddypress :
Yes! in functions.php of your current theme.
Hi @timvango,
Add this code to your functions.php (make sure using BuddyPress Activity Privacy 1.0.3 or +)
add_filter('bp_profile_activity_visibility_levels_filter', 'bp_remove_loggedin_activity_visibility_levels', 10, 1); function bp_remove_loggedin_activity_visibility_levels($profile_activity_visibility_levels){ unset( $profile_activity_visibility_levels ['loggedin'] ); return $profile_activity_visibility_levels; } add_filter('bp_groups_activity_visibility_levels_filter', 'bp_remove_loggedin_groups_activity_visibility_levels', 10, 1); function bp_remove_loggedin_groups_activity_visibility_levels($groups_activity_visibility_levels){ unset( $groups_activity_visibility_levels ['loggedin'] ); return $groups_activity_visibility_levels; } add_filter('bp_profile_activity_privacy_levels_filter', 'bp_remove_logged_in_profile_activity_privacy_levels', 10, 1); function bp_remove_logged_in_profile_activity_privacy_levels($profile_activity_privacy_levels){ return array_diff($profile_activity_privacy_levels, array('loggedin')); } add_filter('bp_groups_activity_privacy_levels_filter', 'bp_remove_logged_in_groups_privacy_levels', 10, 1); function bp_remove_logged_in_groups_privacy_levels($groups_activity_privacy_levels){ return array_diff($groups_activity_privacy_levels, array('loggedin')); }Hi @mattg123, try this code in your functions.php
define('BP_EMBED_DISABLE_ACTIVITY', true); define('BP_EMBED_DISABLE_ACTIVITY_REPLIES', true);if it’s not work try this code :
add_filter('bp_use_oembed_in_activity', 'never_use_oembed_in_activity'); add_filter('bp_use_embed_in_activity_replies', 'never_use_oembed_in_activity'); function never_use_oembed_in_activity(){ return false; }Hi all,
Thanks @bphelp for the post, I want to add some news here :p
Buddypress Activity privacy 1.0.3 is out now, i was add some integration to make it work with others plugins like buddypress Follow and Buddypress Activity Plus.
I Hope this integrations, will make happy many users of this two plugins
.Good News ! Activity stream privacy Is Now here http://wordpress.org/extend/plugins/buddypress-activity-privacy/
Im working for new feature for next release
- Member can change the privacy for an alredy posted activity
- Add Admin backend config for Privacy levels (Admin can enable/disable privacy levels).Any suggestions are Welcome!
Regards,
Hi @Ikenna,
Try to disable All plugins you used, and let buddypress only, and try if login work
Hi,
login by email work but not by username,
Hi,
You have a css problem, check your theme css.hi,
Since BP 1.7,B BuddyPress can display its content within the context of any WordPress theme !! so you can use any wordpress theme. Else, you can youse child theme for bp.
free:
http://wordpress.org/extend/themes/
payed:
http://themeforest.net/category/wordpress/buddypressYes @phatjay,
I think for the old activities, he dont update because the link of members and all content of activity is storeed in databse,
you try to post a new activity and see if the link is /members/id #/
thanks for feedback.
The problem is from js code who animate #whats-new-options div, he make a div 40px hight.
i find fix, i will fix the plugin by ading this code in js file
jQuery('#whats-new').off('focus'); jQuery('#whats-new').on('focus', function(){ jQuery("#whats-new-options").css('height','auto'); jQuery("form#whats-new-form textarea").animate({ height:'50px' }); jQuery("#aw-whats-new-submit").prop("disabled", false); });The problem is from js code who animate #whats-new-options div, he make a div 40px hight.
i find fix, i will fix the plugin by ading this code in js file
jQuery('#whats-new').off('focus'); jQuery('#whats-new').on('focus', function(){ jQuery("#whats-new-options").css('height','auto'); jQuery("form#whats-new-form textarea").animate({ height:'50px' }); jQuery("#aw-whats-new-submit").prop("disabled", false); });Hi again @bp-help and thanks for feedback,
The scroll becomes visible also without the plugin, i think is css problem from buddypress (responsive).
http://s21.postimg.org/j822en8iv/resize_compact.png
http://s17.postimg.org/wotdu057z/resize_default.pngyou can fix that by adding this css :`
#activity-privacy {
margin-top: 2px;
}
`Hi bp-help
, give me 5 minute plz to read all this postsHi,
I was made a hack for that and it work partially!!
The code need more tests, all feeback’s are welcome.
Add this code to your functions.php
hi,
mybe cubepoints-buddypress-integration plugin
http://wordpress.org/extend/plugins/cubepoints-buddypress-integration/
can help you, you need to install cubepoints plugin before then disable points for everything and enable only ranks.
hi,
there is no filter for the search UI (members and groups), the only why is to remove the function call in the template or to use css.
the template file :
buddypress\bp-templates\bp-legacy\buddypress\groups\index.php
just comment bp_directory_groups_search_form();or add this css code :
#group-dir-search{ display: none; } #members-dir-search{ display: none; }hi
try this css code :
`
div.friendship-button {
float: left;
margin-left:5px;
}
`Hi,
1) Mybe the code source of Welcome Pack plugin (http://wordpress.org/extend/plugins/welcome-pack/ ) can help you in dev.
2) or check this link :
http://bp-tricks.com/featured/creating-a-custom-email-template-for-your-buddypress-emails/3) Check this code (from bp-members-functions.php line 1353). function bp_core_signup_send_validation_email
`
$to = apply_filters( ‘bp_core_signup_send_validation_email_to’, $user_email, $user_id );
$subject = apply_filters( ‘bp_core_signup_send_validation_email_subject’, $subject, $user_id );
$message = apply_filters( ‘bp_core_signup_send_validation_email_message’, $message, $user_id, $activate_url );
`With some filters i think you can change email, subjet of activation email, or the message.
Hi, Nice UI and Color schema,
I think there is some problems of allignement in WP ADmin Bar ? (in #adminbarlogin i think must float to right)
What difference between Persons and Communities ?
http://www.howdycom.com/members
http://www.howdycom.com/persons
http://www.howdycom.com/communitiesHi,
https://gist.github.com/dzmounir/5405475
This is short code i was made, you just need to edit or remove some css class for html code.
You can edit the activity,
but at the place of the link of the image, you will get html code of image.