Forum Replies Created
-
Fixed in the https://buddypress.trac.wordpress.org/ticket/4982
Just replace the /buddypress/bp_blogs/bp-blogs-widgets.ph with this
https://buddypress.trac.wordpress.org/attachment/ticket/4982/bp-blogs-widgets.php@mercime hi.
Yes, I’m in a process of it.Hi, BP group documents plugin now compatible with BP1.7 in beta version can be found on http://lenasterg.wordpress.com/2013/04/30/buddypress-group-documents-for-bp-1-7-and-wp-3-5-1/
Hi, @sarathbabu_k,
I updated the BP Group Documents for BP 1.7.
You can downloaded from lenasterg.wordpress.com/2013/04/30/buddypress-group-documents-for-bp-1-7-and-wp-3-5-1/.Hi,
Possible this week a beta version of BP group documents compatible with BP1.7, will be uploaded in http://lenasterg.wordpress.comCheers Lena
Hi @elangley I ‘m glad you use buddypress group documents.
If you have made an updated version can you please share it?Thanks
Lena@dexpositoromero.
Thanks for the solution.
It worked!!Hi Dwenaus.
If a moderator if log in, the create mail screen doesn’t appear at all.Hi Dwenaus.
You forgot to fix it in 2.7.5 version.Small fix if you get javascripts errors on Firefox like ‘jQuery is not defined’.
In file bp-group-tags.php replace line:
`wp_enqueue_script(‘gtags=group-tags’, WP_PLUGIN_URL.’/buddypress-group-tags/group-tags.js’);`
with the following:
`wp_enqueue_script(‘gtags=group-tags’, WP_PLUGIN_URL.’/buddypress-group-tags/group-tags.js’,array(‘jquery’));`
I don’t recommend to change the core files of buddypress. The best way to do it is to write a custom code (I don’t know how to guide you).
So if you don’t mind changing the core files, here is a quick way.Open /buddypress/bp-core/bp-core-classes.php and change the
$sql = “AND pd.value LIKE ‘%%$search_terms%%’”;
to
$sql = “AND (pd.value LIKE ‘%%$search_terms%%’ OR u.user_login LIKE’%%$search_terms%%’)” ;If someone can guide us how to do it in bp-custom.php, it would be great.
If you want to display both usernames and display names you can use this version in your theme’s functions.php:
/*Display Username and display name in Directory */
function my_member_username() {
global $members_template;
if ( empty($members_template->member->fullname) ) {
$members_template->member->fullname = $members_template->member->display_name;
}
$toReturn =$members_template->member->fullname .’ @’.$members_template->member->user_login;
return $toReturn;
}
add_filter( ‘my_member_username’, ‘wp_filter_kses’ );
add_filter( ‘my_member_username’, ‘stripslashes’ );
add_filter( ‘my_member_username’, ‘strip_tags’ );add_filter(‘bp_member_name’,'my_member_username’);
Has anybody found the correct link for Greek language yet?
If yes let us know.