Search Results for '+.+default+.+'
-
Search Results
-
I’ve tried to match it up as close as possible to the main site without looking too “off” and feel that I’ve done a pretty good job.
http://www.nowwerecookin.org/bbpress/
You’ll need a p/w and username: test/test
Plugins used:
- Allow Images 0.7.1
- Avatar .73a
- bbEmoticons version 0.72
- Memberlist .73a
- Google Sitemap Generator .6
- BBPress Private Messaging 0.73
- Use Display Name 0.7.2
- Online List 1.3-fix
- WordPress Integration .7
(all plugs found via these forums
)
Feedback would be greatly appreciated. I’ve checked on Firefox 2.0 and IE 6.0 but would love to hear from users of other browsers!
Thanks in advance, and a huge thanks to those who’ve posted these plugins, as well as the FAQ and other solutions. Skinning this thing has been a bear, but everything else has been relatively easy as pie.
Topic: Plugin Private Posts/Blog
Basically I’m working on a plugin for bbpress that will skip wordpress all together ( no offense wordpress
)
Frankly I think wordpress is too advanced for the average “myspace” type user / target visitor. And, I want to have a community like system like myspace or livejournal.
So I want to basically add a blog section to bbpress where you can keep a private journal… with privacy options on each blog entry to either Private or Public, and if you select Public it will put it in a Forum as a new topic for people to discuss.
I was hoping to get a few pointers as to what functions to look at to help me achieve this through bbpress or if I should even continue doing this and try to customize wordpress-mu instead to fit the visitor
Heres what I have looked at so far:
1) Add new topic / Write blog
bb-templates/post-form.php
......
<label for=”forum_id”><?php _e(‘Pick a section:’); ?>
<?php forum_dropdown(); ?>
</label>
<!– DIRT_PRIVACY –>
Set the privacy:
<select name=”dirt_privacy” id=”dirt_privacy” tabindex=”6″>
<option value=”public” selected>Public</option>
<option value=”private”>Private</option>
</select>
<small>**Choose ‘Private’ if you want this to be a blog only readable by you</small>
<!– END DIRT_PRIVACY –>
<?php endif; ?>
<p class=”submit”>
<input type=”submit” id=”postformsub” name=”Submit” value=”<?php _e(‘Send Post’); ?> »” tabindex=”4″ />
bb-includes/functions.php -> bb_new_topic();
function bb_new_topic( $title, $forum, $tags = '' ) {
// function bb_new_topic( $title, $forum, $tags, $dirt_privacy = ” ) {
global $bbdb, $bb_cache, $bb_current_user;
$title = apply_filters(‘pre_topic_title’, $title, false);
$forum = (int) $forum;
$now = bb_current_time(‘mysql’);
if ( $forum && $title ) {
// if ($dirt_privacy==’public’){
// ADD AS NORMAL TOPIC HERE (depending on whether ‘adding new topic’ or ‘writting new blog’, determine whether to add as default normal Forum Topic (public) or include in users blog but also as public Blog Forum Topic
$bbdb->query(“INSERT INTO $bbdb->topics
(topic_title, topic_poster, topic_poster_name, topic_last_poster, topic_last_poster_name, topic_start_time, topic_time, forum_id)
VALUES
(‘$title’, $bb_current_user->ID, ‘{$bb_current_user->data->user_login}’, $bb_current_user->ID, ‘{$bb_current_user->data->user_login}’, ‘$now’, ‘$now’, $forum)”);
$topic_id = $bbdb->insert_id;
if ( !empty( $tags ) )
add_topic_tags( $topic_id, $tags );
$bbdb->query(“UPDATE $bbdb->forums SET topics = topics + 1 WHERE forum_id = $forum”);
$bb_cache->flush_many( ‘forum’, $forum_id );
do_action(‘bb_new_topic’, $topic_id);
return $topic_id;
//} elseif ($dirt_privacy == ‘private’) {
// ADD TO DB AS PRIVATE BLOG HERE
//}
} else {
return false;
}
}
Sorry if I’m a bit confusing as I am a bit confused right now
Again, any functions/documentation/help I should look at would be appreciated.
-BHensley.com
-Bakedlog.com
one question … I take simply …
I have several plugin about layout on my WP posts …
I can for example do this
[video]url-youtube-video[/video] … and I have a video with all the good code …
or …
[name-of-my-link->url-of-my-link] and my link has the good name … The question is … with integration, is it possible, by default, the forum has these possibilities ?
Topic: Plugin – Memberlist *UPDATE*
New release of my Member List plugin (version .73a). Changes in this release include better WPMU integration support, user count added to member list page, and pages are now supported (default is 10 users per page).
Get the new release here: http://faq.rayd.org/memberlist/
See it in action here: http://www.rayd.org/forums/mlist
I’ve installed bbpress with wordpress integration, the database integration works correctly thanks your guide. But… when i try to see my posts i have this error:
(
Parse error: syntax error, unexpected $end in /home/mhd-01/www.alessandropagano.net/htdocs/blog/wp-includes/gettext.php(307) : eval()’d code on line 1
1 post)
you can try to show this at http://www.alessandropagano.net/blog/forum/
I’ve heard that this could be related with language settings… but my config.php have the default setting (define(‘BBLANG’, ”)
Thanks in advance, i hope to hear you soon!
Topic: Not Resolved by Default
I’ve been looking for a way to start off topics as “Not Resolved” by default, with no luck. Went through all the template files looking for the
<select>
also to no avail. Any ideas how to accomplish this? (Also, searched the forums). Thanks for any help.Topic: Plugin: Forums Moderators
will enable features to give moderators forum specific privileges. This plugin will by disable all privileges for the moderator by default and will need to be given explicit privileges for each forum he needs access to.
The admin menu can accessed by keymaster from Admin > User > Forum Moderators
http://www.adityanaik.com/projects/plugins/bb-forum-moderators/
Please leave your comments, bugs and feedback at this forum
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/