Pay to post in forum
Permalink 1 user found helpfulExample... We are building a weekly newspaper website and are looking at using the forum add-on for a classifieds section. They want to charge a small fee to be able to post your classified ad. The forum add-on will work perfectly for what we want as far as the classifieds but I need a way to charge, say $5, to post your ad.
If anyone can help or give some suggestions I would greatly appreciate it.
I would setup an eCommerce install, and then modify the checkout finish single page/ controllers to generate a random token, insert into a db table- say "discussionBoughtTokens" and display the token.
Then add a simple field at the bottom of the discussion post that says "token". Check if the value of this field is in discussionBoughtTokens and if it is, delete the token and post the article. If it isn't then give an error.
You might also be able to do this withhttp://www.concrete5.org/marketplace/addons/ecommerce-express/... but I don't know.