fris, a wp plugin question

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Brujah
    Beer Money Baron
    • Jan 2001
    • 22157

    #1

    fris, a wp plugin question

    Have you seen any plugins around that replace wp comments with a forum? Imagine this workflow. You create a new blog post. A copy or excerpt of the post is created as a new topic on the forum with a link to read the full story on the blog. Instead of using comments on the blog, there's a link to the forum thread that was created to hold the discussion there instead.
  • icymelon
    Confirmed User
    • Dec 2007
    • 3220

    #2
    interesting way to build sites
    Network Of Adult Blogs With Hardlink Rentals Available

    Comment

    • fris
      Too lazy to set a custom title
      • Aug 2002
      • 55697

      #3
      nope, but it could be done easily, say if you have a vbulletin setup, and write some code to create a thread on publish post.
      Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.

      Comment

      • Brujah
        Beer Money Baron
        • Jan 2001
        • 22157

        #4
        going to give it a shot writing it myself

        Comment

        • fris
          Too lazy to set a custom title
          • Aug 2002
          • 55697

          #5
          Originally posted by Brujah
          going to give it a shot writing it myself
          look into the the following actions, to hook your create thread function into.

          Code:
          function create_thread() {
          // blah blah do it here
          }
          
          add_action('wp_insert_post', 'create_thread'); 
          add_action('new_to_publish' , 'create_thread); 
          add_action('draft_to_publish' , 'create_thread'); 
          add_action('private_to_publish', 'create_thread'); 
          add_action('xmlrpc_publish_post', 'create_thread'); 
          add_action('publish_phone', 'create_thread'); 
          
          add_action('publish_post', 'create_thread'); // this one would be the main one to hook into
          Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.

          Comment

          • CurrentlySober
            Too lazy to wipe my ass
            • Aug 2002
            • 38957

            #6
            Originally posted by Brujah
            Have you seen any plugins around that replace wp comments with a forum? Imagine this workflow. You create a new blog post. A copy or excerpt of the post is created as a new topic on the forum with a link to read the full story on the blog. Instead of using comments on the blog, there's a link to the forum thread that was created to hold the discussion there instead.
            Look at ifans.com

            The front page with the news items are in blog format, and comments on each article are part of a vbullieten install, with an auto link as a topic...

            I think thats what you are describing ?


            👁️ 👍️ 💩

            Comment

            • Brujah
              Beer Money Baron
              • Jan 2001
              • 22157

              #7
              Sober, yes that's what I'm looking for.

              Comment

              • Mutt
                Too lazy to set a custom title
                • Sep 2002
                • 34431

                #8
                what's the advantage of having comments as VB threads rather than WP's own comment section or Disquis/IntenseDebate?
                I moved my sites to Vacares Hosting. I've saved money, my hair is thicker, lost some weight too! Thanks Sly!

                Comment

                • harvey
                  Confirmed User
                  • Jul 2001
                  • 9266

                  #9
                  you can use bbPress or SimpleForum to achieve that, they have that option included. Also, you can install phpBB with Wp2BB and you can set the WP comments to be posts in phpBB
                  This post is endorsed by CIA, KGB, MI6, the Mafia, Illuminati, Kim Jong Il, Worldwide Ninjas Association, Klingon Empire and lolcats. Don't mess around with it, just accept it and embrace the truth

                  Comment

                  • fris
                    Too lazy to set a custom title
                    • Aug 2002
                    • 55697

                    #10
                    Originally posted by Brujah
                    Sober, yes that's what I'm looking for.
                    found this

                    http://dev.whatniche.com/

                    Wordpress-vBulletin is a simple bridge between your WordPress and vBulletin installations. When you post a new article within WordPress, you may optionally have this plugin automatically create a thread in your forums.
                    You may specify the forum to post the thread in, which WordPress categories to do this for and which user to make the threads belong to.
                    The post content is fully customisable and uses standard vBulletin BBCode, as if you were posting from within your forum.
                    Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.

                    Comment

                    • Brujah
                      Beer Money Baron
                      • Jan 2001
                      • 22157

                      #11
                      @Mutt, most popular forum software handles user management much better than WordPress does in my opinion. I already have the forum and users. I want to add the blog to it, so this approach seems like it will boost both of them. I hope.

                      I'm using Invision software, but they have a great API I can use.
                      http://community.invisionpower.com/r...ata-hooks-r401

                      Comment

                      Working...