BuddyDev

Search

Replies

  • Participant
    Level: Enlightened
    Posts: 134

    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

  • Participant
    Level: Enlightened
    Posts: 134

    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.

  • Participant
    Level: Enlightened
    Posts: 134

    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!

  • Participant
    Level: Enlightened
    Posts: 134

    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.

  • Participant
    Level: Enlightened
    Posts: 134

    …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”).

  • Participant
    Level: Enlightened
    Posts: 134

    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…

  • Participant
    Level: Enlightened
    Posts: 134
    HansRuedi Keller on in reply to: [Resolved] Extended Code for Private Site #5236

    Hi Brajehs,
    Got it. Thanks again for your great support! 🙂
    Hans

  • Participant
    Level: Enlightened
    Posts: 134

    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…

  • Participant
    Level: Enlightened
    Posts: 134

    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

  • Participant
    Level: Enlightened
    Posts: 134

    “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.