Search Results for '+.+default+.+'
-
Search Results
-
Topic: Plugin – Member List
Here’s one I hope you all enjoy.
This plugin and helper files allows you to link to a member list page, which by default displays the username, user title, home page, join date (with some easier-to-read formatting), and I left in some commented out code for post count if you have my post count plugin installed (if not, you might want to delete those lines from memberlist.php).
Additionally, you can click the colum title for Username and Join Date and get the list sorted by that column. Furthermore, if you click the same column again, it sorts it by the column in descending order.
Lastly (and the coolest part in my opinion), admins will see an extra part to the table that will allow you to delete users (as many or few at one time as you want). Users without the ability to delete users will not even be able to see the added cells or submit button.
To see the member list in action, visit http://www.rayd.org/forums/ (the link is at the top). You won’t be able to see the cool admin parts of the table, of course
To download the plugin, visit http://faq.rayd.org/memberlist/
This plugin is another simple one. It allows you to set an inactivity limit on threads shown on the forum main page. The default is set to 7 days, and if you like that setting, then all you have to do is put the file in your my-plugins directory. If you want to change it, it’s easy enough (desciption in the readme).
You can download the file and read the instructions at http://faq.rayd.org/bbpress_limit_recent_activity/
You can see it being used at http://www.rayd.org/forums/ (notice how there are no threads in the “Latest Discussion” section whose last post is older than a week).
Enjoy!
Sorry about having to make a change in functions.php, I just don’t know how else to do it.
You can see it in action at http://www.rayd.org/forums2/
You can download the file at http://faq.rayd.org/bbpress_avatar/ (link goes to readme which has link to file).
Don’t forget to change your css file in the described fashion. By default (which, I like this) anything that goes beyond the bounds of the author box is hidden.
I’ve played around with the default theme a bit, and came up with something that keeps the general feel, but adds a prominent link to the RSS page (using CSS), and made the “tag” heading link to the tags page for a bit of added spice. Oh, and I’ve added snazzy stripes to the tag background ala hoodwinkd as a nod in their general direction.
Here’s the URL to the forum posting (also give you a preview of the theme):
<p class="soapbox">
Having hacked at the default bbPress template I’m conscious that it makes extensive use of element identities for it’s formatting.
i.e. elements have an
id="xyz"
or aname="xyz"
attribute, and in the css there is a corresponding#xyz { color: #FFF; }
.With a pluggable base model such as bbPress it makes sense to specify “how to render things like this” rather than “how to render the thing called this”.
Thus my request and suggestion is that anyone considering designing bbPress themes in the future seriously considers using CSS classes instead of IDs for formatting.
The use of classes has the same effect as id’s, but there is a key benefit: an ID can only appear once on a page, so if a page element is repeated, and it’s formatting is based on an ID, then the template breaks.
</p>
Because I like to be difficult, I have my WordPress installed at ~/siliconholler.com/blog/ and mapped to http://blog.siliconholler.com/. My bbpress installation is in directory ~/siliconholler.com/forum/ and mapped to http://forum.siliconholler.com/
It mostly works. When I try to look at the default topic http://forum.siliconholler.com/topic/1?replies=1 I get a 404. If I try to view a profile http://forum.siliconholler.com/profile/1 I also get a 404.
.htaccess currently has Options +MultiViews and I have also tried the code generated by /bb-admin/rewrite-rules.php
My config.php reads:
// ** MySQL settings ** //
…
$bb_table_prefix = ‘bb_’;
$bb->domain = ‘http://forum.siliconholler.com’;
$bb->path = ‘/’;
$bb->name = ‘Reality Me Discussions’;
$bb->admin_email = ‘validemailaddyhere’;
$bb->mod_rewrite = true;
$bb->page_topics = 30;
$bb->edit_lock = 60;
$bb->gmt_offset = -5;
define(‘BBLANG’, ”);
$bb->akismet_key = ‘properkeyhere’;
$bb->wp_table_prefix = ‘wp_’;
$bb->wp_home = ‘http://blog.siliconholler.com’;
$bb->wp_siteurl = ‘http://blog.siliconholler.com’;
/* Stop editing */
define(‘BBPATH’, dirname(__FILE__) . ‘/’ );
require_once( BBPATH . ‘bb-settings.php’ );
Any suggestions?
Doug McCaughan