Hi,
I’ve managed to translate plugin with language file but i can’t find where to change Buddypress sub-menu (“Privacy”) and title of option’s block : “Check Privacy options”.
nb : i’ve changed the term “Privacy” in language file but it does not work.
I’ve search in the new “home.php”, “bp-profile-privacy-loader.php” and all other files, with no succes.
Any help would be appreciated
Thanks in advance
https://www.ads-software.com/extend/plugins/bp-profile-privacy/
]]>This plugin did not work for me. No options were displayed for me to choose. Plus, it disabled some of buddypress group creation options. Once it was disabled, the options worked fine.
https://www.ads-software.com/extend/plugins/bp-profile-privacy/
]]>i tryed install it under multisite wp… after active plugin in network-admin backend – no anywhere change.
https://www.ads-software.com/extend/plugins/bp-profile-privacy/
]]>I was trying to translate the plugin to pt-BR and got this message:
Loading Issue: Author is using load_textdomain instead of load_plugin_textdomain function. This may break behavior of WordPress, because some filters and actions won’t be executed anymore. Please contact the Author about that.
Any way to fix it? ??
https://www.ads-software.com/extend/plugins/bp-profile-privacy/
]]>When an odd number of consecutive private fields are removed from view, it causes the “zebra” table to display the same color twice, for example “gray|white|gray|white” would become “gray|gray|white” if a single field is removed.
This is caused by this code in bp-xprofile-templatetags.php:
if ( $profile_template->current_field % 2 == 1 )
$css_classes[] = 'alt';
(every other field gets the ‘alt’ CSS class)
This code needs to be either removed, or a filter such as this one applied into functions.php:
function my_filter_empty() { return ''; }
add_filter('bp_get_field_css_class', 'my_filter_empty', 1, 1);
Since the table itself already has the ‘zebra’ CSS class applied to it, jQuery automatically applies the ‘alt’ class to every other row, so the code above is completely redundant and will hopefully be removed in the next version.
https://www.ads-software.com/extend/plugins/bp-profile-privacy/
]]>I am using wordpress 3.0.1 and buddypress 1.2.5.2 on a localhost , and tested this plugin …
I made 2 profile field groups
one field group having 5 fields and the other having 7 fields ….
though I have not tested on a live site , It seems to work fine
!!!
https://www.ads-software.com/extend/plugins/bp-profile-privacy/
]]>