Replies
- HansRuedi Keller on October 2, 2019 at 4:17 pm in reply to: [Resolved] BuddyPress Message Privacy without Friends component #25621
Hi Brajesh,
1. Perfect. Thanks!
2. Yes, it’s now loading my localization. Don’t know what I did wrong.
3. What custom CSS is needed to load the bp-nouveau font styling for your plugin in the frontend?
Thanks for help, Hans
- HansRuedi Keller on October 2, 2019 at 9:58 am in reply to: [Resolved] BuddyPress Message Privacy without Friends component #25611
Sorry, one more…
The message privacy plugin does not honor translation files in /wp-content/languages/plugins – you are always using the translation files in the plugin directory itself.
- HansRuedi Keller on October 2, 2019 at 9:42 am in reply to: [Resolved] BuddyPress Message Privacy without Friends component #25610
Thanks for your immediate reply, Brajesh! There is one more request…
I’m using the bp-nouveau templates, but for message privacy settings in the front end you are using your own type of font styling. Please inherit whats defined by bp-nouveau. Thanks!
- HansRuedi Keller on October 28, 2016 at 8:09 am in reply to: bbPress based "Task Manager" / To-do List for BuddyPress #6179
Hi Brajesh,
It’s interesting to see what Google integrated in their G Suite with Action Items…https://www.blog.google/products/g-suite/five-new-ways-reach-your-goals-faster-g-suite/
But would say it’s still a good idea to do something re “to-dos” based on bbPress.
- HansRuedi Keller on September 8, 2016 at 8:08 pm in reply to: [Resolved] Bug in BuddyDev Username Availability Checker 1.1.1 #5484
…and yes, sometimes it’s a good idea to sleep another night. That way I remembered a few lines of code from Chad Butler in my functions.php to prevent registrations with a space in username. That code was no longer working because of a change in wp-members code (the username field in the registration form changed from “log” to “user_login”).
- HansRuedi Keller on September 7, 2016 at 9:43 am in reply to: [Resolved] Bug in BuddyDev Username Availability Checker 1.1.1 #5450
Hi Brajesh,
Yes, it’s a single wp instance. And I’m using your plugin in combination with wp-members by Chad Butler. One day you provided the code needed to make the combination working in the frontend…
add_filter( 'buddydev_username_availability_checker_load_assets', 'bpdev_enable_username_availability_asset_loading' );function bpdev_enable_username_availability_asset_loading( $allow = null ) {
if( ! is_user_logged_in() && is_page('register') )
return true;return $allow;
}add_filter( 'buddydev_uachecker_selectors', 'buddydev_uachecker_add_extra_selectors' );
function buddydev_uachecker_add_extra_selectors( $selectors ) {
return $selectors .',#wpmem_reg input#user_login';
}
With spaces in usernames there is a problem while mentioning a user (@username) in BP.
The username check is working for me with any browser on my Mac – other words, if I try to register a username with a space in it, I get the error message. Only on a PC with IE there is no error showing up…
- HansRuedi Keller on August 23, 2016 at 8:12 am in reply to: [Resolved] Extended Code for Private Site #5236
Hi Brajehs,
Got it. Thanks again for your great support! 🙂
Hans - HansRuedi Keller on August 22, 2016 at 4:10 pm in reply to: bbPress based "Task Manager" / To-do List for BuddyPress #5217
Sounds good! Thanks Brajesh
It’s really the most wanted feature… All members in a team have to do some tasks while collaborate and it’s important to know who, when etc.
PS: One more thought: there should be a new sub-tab in /members/username/forums/ with the “to-dos” I’m assigned to…
- HansRuedi Keller on August 22, 2016 at 10:23 am in reply to: bbPress based "Task Manager" / To-do List for BuddyPress #5203
Hi Brajesh,
one solution could be to use…
https://wordpress.org/plugins/zendesk/
…but that way the “to-dos” are no longer inside a wp/bp installation (not private) – and not integrated into users & groups what’s definitely not user/team/workflow friendly.
I will also ping jjj to see what his thoughts are…
Thanks,
Hans - HansRuedi Keller on August 21, 2016 at 7:58 pm in reply to: bbPress based "Task Manager" / To-do List for BuddyPress #5199
“Last Updated: 5 years ago” – no way.
buddydev code is needed… what I wrote: something that’s up-to-date, not to complicated AND well supported.