Forum Replies Created
-
In reply to: Both Undelete and Delete links are under each postIn reply to: Both Undelete and Delete links are under each post
Both links are valid and link to the correct post’s delete/undelete function.
In reply to: Both Undelete and Delete links are under each postI’m on the current trunk as of writing this post. (1903) I’ll try testing the live forum.
Edit: Using the default theme made the problem go away, but the line of code that shows the edit/delete/undelete links is exactly the same as Kakumei’s and there’s no functions.php file.
In reply to: List of Hooks/Actions?Most of the filters are in
defaults.bb-filters.php
ordefault-filters.php
before 1.0.In reply to: Cancelling the integration?If you put the settings in bb-config.php, you’d need to delete them from there as well as in the admin menu.
In reply to: Separating the first post of each topicUntested code below:
<?php $bb_post = $posts[0]; unset($posts[0]); $del_class = post_del_class();?>
<div id="post-<?php post_id(); ?>"<?php alt_class('post', $del_class); ?>>
<?php bb_post_template(); ?>
</div>
<h6>Responses</h6>
<ol id="thread" start="<?php echo $list_start; ?>">
<?php foreach ($posts as $bb_post) : $del_class = post_del_class(); ?>
<li id="post-<?php post_id(); ?>"<?php alt_class('post', $del_class); ?>>
<?php bb_post_template(); ?>
</li>
<?php endforeach; ?>
</ol>In reply to: Integration Version CheckbbPress and WP/WPMU use the same user database schema. The only thing that wouldn’t carry across is user levels.
In reply to: Old config.php detection broken1. Why in the world would you put bbPress inside of phpBB? Just pick one already!
2. bbPress allows you to move the bb-config.php file outside of your document root for security purposes just in case PHP does something weird.
In reply to: bb_profile_data_form automatically generating table?You could copy the function’s contents to your template and edit it from there…
In reply to: bbpress vs phpbbWordPress themes are more closely related to bbPress themes. phpBB themes use a completely different system.
You’re on bbPress stable, which isn’t capable of sharing cookies with WordPress 2.7. If you want, you can install the alpha version of bbPress, but it’s not really a good idea on a production site…
In reply to: Request: Delete Bozo Usershttp://bbpress.pastebin.com/f40b25f69
Simply put, this deletes the account as soon as it’s made. I know it’s not perfect because it still sends the registration email and requires extra queries. I’ll try to make it work before any queries are made and then I’ll submit it to the plugins repository.
In reply to: Logging in won’t work.I found the problem – Year long cookies was breaking it. I don’t understand why though… It says that it’s compatible with 1.0
In reply to: Uh – oh…I made a mistake and cant fix itGo into your database, do the following query:
UPDATE
(your $bb_table_prefix found in the config file goes here)topicmeta SET meta_value='http://www.portcityunderground.com/bbpress/' WHERE meta_key='uri' LIMIT 1
In reply to: Can not upgrade to 2.6- This is the bbPress forum
- Did you edit wp-includes/functions.php (If so, can you paste the contents into http://pastebin.com/ and give us the url?)
In reply to: XaniForums“You should left-align forum names in the list I think.”
It is left-aligned.
In reply to: Text color for Add new topic and translate RegisterFor #1, you can add the following to your style.css file as near to the bottom as possible:
#latest th a, #forumlist th a, #favorites th a {
color: #eee;
}
#latest th a:hover, #forumlist th a:hover, #favorites th a:hover {
color: #eee;
}For #2, I downloaded sv_SE.mo, and it does not have the words “Register or log in:”, “Log in ยป”, or “Remember me”. I don’t know how to edit MO files, so you’ll need to wait for someone who does.
In reply to: bbPress 0.9 – plugin compatibility listIn reply to: Integrate PM by default“Also, the plugin (the original and my modded version) is completely unorganized. It should be rewritten …”
If nobody else is already remaking it, I could make it my next project.
Is anyone working on a remake of Private Messaging?
In reply to: blocking a user does nothingI don't see how a user could both be logged in AND have a broken password. If their password is broken, they can't login.
Maybe they were still logged in while they got blocked.
In reply to: Cron?If I skipped the cron thing entirely, it would only mean one extra database query per pageload, anyway, so I guess I don’t need to worry about it.
In reply to: This whole BuddyPress hype …. needs explanationBuddyPress is a social networking addon for WPMU. It does not have a built-in forum, and it will not be replacing bbPress. Vanilla in this context just means plain.
In reply to: Cron?I was thinking of making a plugin that would allow temporary blocking/bozo-ing/inactive-ing on a timer.
In reply to: Forum categorieshttp://llamaslayers.net/daily-llama/541/tech/bbpress-forum-categories/
Here you go! I just finished it and submitted it for consideration for the bbPress plugin directory.
In reply to: Forum categoriesI’m making a plugin to allow forums to be turned into categories.
Stay tuned!