Forum Replies Created
-
Hi @romandaily,
I think the problem is not from css,
your theme is buddypress child theme, or simple wordperss theme ?Regards,
I was registred in your site @carlzammit and activated without error.
Hi,
Try this filter
add_filter('groups_group_name_before_save','mygroups_group_name_before_save',10,2); function mygroups_group_name_before_save($group_name, $group_id){ // your code to check the $group_name value return $group_name; }you can check the code in bp-groups-classes.php for more informations
Hi,
Check this links
the Buddypress codex
https://codex.buddypress.org/developer/plugin-development/Some tuts
http://wp.tutsplus.com/tag/buddypress/Hi @boiy,@benjino
Add the code in your functions.php, the code exlcude all admins from buddypress. You can edit the code and personalize it to make it work for your needs.
what version of BBPress u use ?
try to disable all plugins excepts buddypress
login from https://buddypress.org/wp-admin
Hi @tduschei,
“Buddyperss Activity privacy is not yet integrated with Buddypress Media plugin”.
If you want make a modification in plugin, please do it by adding new filters, you can check the support threads.
https://wordpress.org/support/topic/how-to-set-default-activity-privacy-level?replies=6
or by analysing the code in bp-activity-privacy-integrations.php
this file contain integration of the plugin with buddypress acitivity+ and Buddypress Followers.
Regards,
MounirHi,
You can add new field as Text field, and save the ids of the members who are family members as json object or ids separated by ;
In front end, member select members family by tapping the name/nickname of the members
(you can use jquery select2 plugin http://ivaynberg.github.io/select2/ with ajax of course).You need to add filters before saving profil fileds, and before printing.
Hope this little idea can help you.
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 :P.
Good News ! Activity stream privacy Is Now here https://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:
https://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;
}
`