Integrate a forum into wordpress site

Use bbPress. It has a fully-built backend, and allows you to assign specific users to moderate the forum, and not access the rest of the website. It’s the quickest, easiest, and probably most secure solution.

bbpress change the word forum, topic, reply in the forum to another word I choose

You can hook to translation filters of WordPress to change any word or phrase. These filters are: gettext, ngettext and gettext_with_context: add_filter(‘gettext’, ‘change_bbpress_wording’, 10, 3); add_filter(‘ngettext’, ‘change_bbpress_wording’, 10, 3); add_filter(‘gettext_with_context’, ‘change_bbpress_wording’, 10, 3); function change_bbpress_wording ($translated, $untranslated, $domain) { if ($domain == ‘bbpress’) { $translated = str_ireplace(‘Forum’, ‘*desired word*’, $translated ); $translated = str_ireplace(‘Topic’, ‘*desired … Read more

bbPress or WordPress + forum plugin?

I have used http://simple-press.com/ on a few WordPress sites I have done and its been really good and I haven’t had any problems with it. Alot of options, quite robust yet easy to use, it would be the one I would suggest trying.

Conference website with ticket-sales + sponsorship sales with WordPress?

I recently used http://wpeventticketing.com/ for WDC2011 in October, I didn’t look to far in to all the options but I think it can do everything you’re looking for. I’d suggest also using MailChimp for emailing attendees as it is far better than anything I’ve found to plugin to WordPress.

What’s the easiest way to change the default landing page for BuddyPress groups?

[Edit – My original answer will only work in the upcoming BP 1.6] Versions of BuddyPress from 1.6 onwards function bbg_change_group_default_extension( $default ) { return ‘forum’; } add_filter( ‘bp_groups_default_extension’, ‘bbg_change_group_default_extension’ ); Versions of BuddyPress prior to 1.6 For the moment, you’ll have to use something like the following, which is a modified version of bp_core_new_nav_default() … Read more