BuddyDev

Search

Replies

  • Participant
    Level: Enlightened
    Posts: 118
    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: 118
    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: 118
    Erich199 on in reply to: [Resolved] BBpress Thread Prefix Plugin Idea #2258

    I have this resolved

  • Participant
    Level: Enlightened
    Posts: 118
    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: 118
    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: 118

    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: 118
    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: 118
    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.

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

    So in the admin of the site, I could tell the software what forum I wanted to have the prefix. Then I could make my individual prefixes and tell the software which forms to use those prefixes in.

    So example:

    Introductions, Feedback, General Chat – prefixes would be [Intro] [Feedback] [General]

    Site Info, Suggestions, Feedback – prefixes would be [Site Info] [Suggestions] [Feedback]

    Games We Play – prefixes would be [Battlefield] [Archeage] [Other]

    I could make my prefixes and then say “I want to use these in this forum”

    Some of my other forums didn’t have any thread prefixes at all, but I could tell the software which forum I wanted to make the user use a thread prefix. In the forums I had thread prefixes, I made the user use a prefix. They weren’t allowed to post unless a prefix was attached.

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

    Hi Brajesh,

    That would be exactly what I am looking for.

    Here is an image of a buy/trade system I set up in Mybb. The prefixes are colored differently (I did that via css). I made it so that when a user posted a “Sell” offer, that the prefix would show up and if you clicked on that prefix, it would pull up all “Sell” offers. I also made some buttons at the top so that if a user visited the forum, the could click on the prefix they wanted to sort by and it would only show them those threads with that prefix attached. It allowed me to rely less on subforums that would clutter up my website.

    I did the same thing for my other forms. I had one form titled “The Games We Play” and inside of it, I made prefixes for each game that my community was playing at that time. If a user visited the forums and saw that we played “Battlefield”, they could click on that prefix and only show topics that had the thread prefix “Battlefield”.

    I’m actually shocked at some of the basic forum features that are missing in bbpress. While it is very lightweight, it lacks some pretty basic features. I mean, they didn’t even have a “make new topic” button. I did share the method to do that with the community and they were a little shocked at the simplicity of it. Why this isn’t included in the core…I will not understand.

    Thanks again, I hope that you can make this a premium plugin for the community. I think it will be very valuable for forum users who want to organize their forms a little better.

    • This reply was modified 8 years, 4 months ago by Erich199.
    • This reply was modified 8 years, 4 months ago by Erich199.
    • This reply was modified 8 years, 4 months ago by Erich199.