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.
fris, a wp plugin question
Collapse
X
-
fris, a wp plugin question
- Free Premium Domain Lists and Tools at Clickmojo.com
- For Sale: Obscenity.com
Tags: None -
going to give it a shot writing it myself- Free Premium Domain Lists and Tools at Clickmojo.com
- For Sale: Obscenity.com
Comment
-
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 intoComment
-
Look at ifans.comHave 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.
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
-
Sober, yes that's what I'm looking for.- Free Premium Domain Lists and Tools at Clickmojo.com
- For Sale: Obscenity.com
Comment
-
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
-
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 phpBBThis 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 truthComment
-
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.Comment
-
@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- Free Premium Domain Lists and Tools at Clickmojo.com
- For Sale: Obscenity.com
Comment




Comment