BuddyDev

Search

Replies

  • Participant
    Level: Enlightened
    Posts: 120
    Erich199 on in reply to: [Resolved] BBpress – restrict topic creation #2308

    hi Brajesh,

    Worked like a charm. Thanks so much for your help on this.

  • Participant
    Level: Enlightened
    Posts: 120
    Erich199 on in reply to: [Resolved] BBpress – restrict topic creation #2304

    Hi Brajesh,

    I just noticed this is disabling a user from posting in all forums not just the single forum

  • Participant
    Level: Enlightened
    Posts: 120
    Erich199 on in reply to: [Resolved] BBpress – restrict topic creation #2303

    Hi Brajesh,

    This worked perfectly! Thank you very much. I can now post topics as admin or moderator and the participants can not. This is exactly what I wanted in that forum.

  • Participant
    Level: Enlightened
    Posts: 120
    Erich199 on in reply to: [Resolved] BBpress – restrict topic creation #2299

    Hi Brajesh,

    Sorry for delay responding. Was out working.

    I’d like to just restrict a single forum that I post site news and info in. Ideally, I’d like to restrict topic creation only, but allow members to reply to created topics.

  • Participant
    Level: Enlightened
    Posts: 120
    Erich199 on in reply to: [Resolved] BBpress Thread Prefix Plugin Idea #2258

    I have this resolved

  • Participant
    Level: Enlightened
    Posts: 120
    Erich199 on in reply to: Update on forum replies #2166

    No worries friend! Take your time, you’re a busy man.

  • Participant
    Level: Enlightened
    Posts: 120
    Erich199 on in reply to: [Resolved] Auto Welcome PM #2157

    Hi Brajesh,

    I managed to get it figured out.

    //Welcome PM//
    
    function send_message_to_new_member( $user_id) {
    
        if ( ! bp_is_active( 'messages' ) )
            return;
    
        $args = array(
            'sender_id' => 1,
            'thread_id' => false,
            'recipients' => $user_id,
            'subject' => 'Welcome to Art of War Gaming!',
            'content' => 'Welcome! message here',
            'date_sent' => bp_core_current_time()
        );
    
        $result = messages_new_message( $args );
    }
    add_action( 'bp_core_activated_user', 'send_message_to_new_member', 1 );
    //End Welcome PM//
  • Participant
    Level: Enlightened
    Posts: 120

    Hi Brajesh,

    Wow! I’m such an idiot. I didn’t even notice that. I thought the plugin only updated the current user preference. Ok, then , this topic is resolved. Sorry I posted a silly question.

  • Participant
    Level: Enlightened
    Posts: 120
    Erich199 on in reply to: [Resolved] BBpress Thread Prefix Plugin Idea #2131

    Hi Brajesh,

    Was just checking in on this one. If you need me to do some testing for you I’d be happy to do so on my test board.

  • Participant
    Level: Enlightened
    Posts: 120
    Erich199 on in reply to: [Resolved] BBpress Thread Prefix Plugin Idea #1909

    Hi Brajesh,

    Thanks for getting back with me.

    I think what I’m looking for is:

    1.) Ability to make my own thread prefixes in the admin area. A simple text field to input the name of the prefix will do perfectly.
    2.) Tell BBpress that I want “Forum X” to use those prefixes.
    3.) When a user clicks on the thread prefix, it will show all threads with the attached prefix.

    I’m in no big hurry for it. Hopefully other users will find it useful and it can be used as a premium plugin.

    Thanks for your help as always.