Info
- 75 posts
- 64 voices
- Started 4 years ago by bbwlovely
- Latest reply from Jeremyx
- This topic is not resolved
Show off your Forum !!
-
- Posted 2 years ago #
http://test2.cell-systems.net/forums <- Template + Forums I'm working on now (test domain) it will be moved to http://www.cell-systems.net this weekend once i finalzie it.
AdSense for bbPress
Version 1.0.1 | By Seans0nAkismet
Version 1.1 | By Michael AdamsBBcode Lite
Version 2.0.0 | By KillerSneak/_ck_ | (customized to work with WYSIWYG text editor)bbPM
Version 0.1-alpha10 | By KillerSneak/Nightgunner5| (customized to work with WP theme layout)bbPress-WordPress syncronization
Version 0.8.0 | By Ivan BabroubbPress Attachments
Version 0.2.7 | By _ck_bbPress Recent Replies
Version 0.1b | By AshfameBozo Users
Version 1.1 | By Michael AdamsRole Manager
Version 0.1 | By Nightgunner5Other:
* Integrated theme with WordPress
* new and easy HTML text editor (customized to work with "BBcode Lite Version 2.0.0 | By KillerSneak/_ck_ | -customized to work with WYSIWYG text editor)
* Custom top user nav + user icon's on group eg:
-Admin icon
-Moderator icon
-Clan Memeber icon
-Donators icon
-Member icon
* 1 tag cloud to work for BBpress and WordPress- and allot of other customized stuff to get everything WP/BB to look the same.
-
- Posted 2 years ago #
some stylesheet color changes
plugins:
allow-images
bbvideo
human-test
members-online
my-views
askimet
recent-posts
adsense-for-bbpress (currently not working) -
- Posted 2 years ago #
I started a canoeing specific forum. It's finally starting to get some traffic. I've used some standard plugins as well as writing some of my own.
_CK_'s plugins are indispensable.
here's a could packed into one that do a lot of SEO stuff like titles, canonical links and opening links in new windows.
<?php /* Plugin Name: Target Blank Description: append target="_blank" to all links and other fun stuff Author: James Version: 1 */ //add rel=external to post links... there's also some stuff in here to allow more tags function bb_target_blank( $text ) { $text = preg_replace('|<a (.+?)>|i', '<a target="_blank">', $text); return $text; } add_filter('pre_post', 'bb_target_blank'); // Add Tags with allow_tags function allow_more_tags( $tags ) { $tags['p'] = array('style' => array()); $tags['h3'] = array('style' => array()); $tags['span'] = array('style' => array()); $tags['b'] = array('style' => array()); $tags['em'] = array('style' => array()); $tags['ol'] = array('style' => array()); $tags['target'] = array('style' => array()); $tags['iframe'] = array('style' => array()); return $tags; } add_filter( 'bb_allowed_tags', 'allow_more_tags' ); function meta_keywords() { global $tags; if (!empty($tags)) { $keywords=""; foreach ($tags as $t) {$keywords.=$t->raw_tag.', ';} echo "\n".'<meta NAME="keywords" CONTENT="'.trim($keywords,", ").'">'."\n"; } } add_action('bb_head', 'meta_keywords',8); function set_canonical_links() { global $page; if (is_front()) { $url = (!empty($_SERVER['HTTPS'])) ? "https://".$_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI'] : "http://".$_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI']; echo ' <link rel="canonical" href="'.$url.'" />'.PHP_EOL; } elseif (bb_is_topic()) { $tlink = get_topic_link(); if ($page > 1) { $turl = $tlink.'/page/'.$page; } else { $turl = get_topic_link(); } echo ' <link rel="canonical" href="'.$turl.'" />'.PHP_EOL; } elseif (is_forum()) { echo ' <link rel="canonical" href="'.get_forum_link().'" />'.PHP_EOL; } else { return; } } add_action('bb_head','set_canonical_links'); ?>This one makes better page titles...it has some canoe specific stuff in it but I think you can see how it works and change it for your needs.
<?php /* Plugin Name: Better Titles Author: James Dixson */ add_filter('bb_title', 'titlemodify'); function titlemodify( $title ) { //your code that does something to $title; switch ( bb_get_location() ) { case 'topic-page': $title = get_topic_title() . ' - ' . get_forum_name() . ' — Adventure Canoe Forum' ; break; case 'front-page': $title = bb_option('name') . ' — Canoeing and Paddling Discussion' ; break; case 'forum-page': $find = 'Canoe'; $string = get_forum_name() ; if(strstr($string,$find)){ $title = get_forum_name() . ' — Adventure Canoe Forum' ; }else{ $title = 'Canoe ' . get_forum_name() . ' — Adventure Canoe Forum' ; } break; case 'profile-page': $title = 'Profile for ' . get_user_name() . ' - Adventure Canoe Forum — Canoeing and Paddling Discussion' ; break; } return $title; } ?>Anyway enjoy... and if you like canoeing post on the Adventure Canoe Forum
-
- Posted 2 years ago #
Greetings :)
I guess I could do the show off thing. Here's mine: Dev:station
It has quite a lot of plugins installed - and everything works - though there may be a few bugs that I don't know of.
Plugin List:
Admin Add User
Allow Images
Avatar Upload
BBCode Lite
BBCode Toolbar
bbPM
BBPress:SyntaxHiliter
bbPress Moderation Suite
bbPress Smilies
Bozo Users
Favicon
General Statistics (my own plugin)
Hot Tags Plus
Hot Topic
Human Test for bbPress
Indicate New Posts
Member List
bbPages
Post Count Plus
Project Honey Pot
Read-Only Forums
Related Topics
Reputation
Signatures
Simple Online List
Support Forum
Terms of Service
Topics per Page
TwitterI know the address to this forum isn't that great - I'll be getting a .com domain for it some time next year (hopefully January).
Enjoy! :)
Michael
-
- Posted 2 years ago #
Here is my latest forum:
-
- Posted 2 years ago #
Mine is very simple....my knowledge is limited but hopes are high!!! http://pennyforums.com
-
- Posted 2 years ago #
Mine is at http://www.taeoui.com/forums
Theme matches the rest of the site.
I'm also working on another project with BBPress to create a gallery where users submit their work in a placer where others can view, rate, and comment. So far I've been able to achieve all of the functionality in the form of plugins (both my own and modifications of existing ones) however I had to modify the core to make the register page look nicer (why is there a template for that?!). It's been a great learning process and BBPress, like WordPress, is great to work with.
-
- Posted 2 years ago #
@Taeo: That sounds very interesting! :) And you have an excellent forum! :)
If you ever make it a stable plugin - please let us know. I, for one, would make huge use of it! :) I did mention how I my bbPress to be a community site at the recent IRC.
Great work! :)
-
- Posted 2 years ago #
@Michael888
Thanks! I will definitely share once I am done.
I am not so sure about releasing it as a stable plugin. Alot of what I have done is very specific to the goal I am trying to accomplish! Not to mention I haven't really made an effort to make it play nice as a plugin (table needs to be created manually, queries have hardcoded table names, etc).
If the 1.1 revival of BBPress goes through and my site does well I may consider it. Regardless I would release it as is to anyone who wanted to tinker with it.
-
- Posted 2 years ago #
I completely agree with you on that. There would be no point in putting effort into making a stable plugin for a version of bbPress that will soon be out of date.
I'd really love to see the developments of this. :) Wish you luck with it :)
-
- Posted 2 years ago #
Hi Michael888
Nice work. I registered to your forum too :)
But I am pretty new to this and I am wondering what plugins you used to get the
Board StatisticsFrom my reading it may be a combo of plugins.
-
- Posted 2 years ago #
Hi rleon!
Thanks for joining! :)
The smaller statistics were entered manually based on functions in the built-in statistics file, except for the newly registered members which I wrote myself.
The actual 'Detailed Statistics' comes from a plugin called MyViews. Search it up in the plugin browser.I also have a ton of other plugins - which is why the forum looks somewhat advanced.
Regards
Michael -
- Posted 2 years ago #
This is mine: http://forum.xbmcfreak.nl/
I changed a couple of things to integrate it more and more with my wordpress theme and site: http://www.xbmcfreak.nl/
-
- Posted 2 years ago #
Hi,
bbPress is being used by the Italian Expat Community in Malaysia at
http://forum.nellaterradisandokan.com/
bbPress in a excellent forum software
-
- Posted 1 year ago #
My new bbPress forum for discussing Antique Prints
Discuss and Discover Antique Prints
i've used a custom skin, very much based on the default kakumei style.
I've loved working with this software.
-
You must log in to post.