Forum Replies Created
-
In reply to: can’t remove main forum …
There is no way to delete forums right now.
In reply to: Moving postWhen logged in as an administrator, you should see a “Move this topic to the selected forum [dropdown of forums]” at the very bottom of that topic’s page.
At least, that’s how things work with the default template.
In reply to: Cannot Add WPMU Header to BBpressI would make a copy of your functions (wp_admin_bar and wp_admin_bar_style) and put them in a bbPress plugin.
I you want to make sure the code is always the same, you could use a symlink or instead make a bbPress plugin that just includes the one needed mu plugin.
In reply to: How to get poster’s ID$bb_post->poster_id
should work, but there are some convenience functions as well:get_post_author_id()
returns the ID, andpost_author_id()
echoes it.In reply to: Add search box to bbpress.org forums please??Done – thanks
In reply to: img tagsTry this plugin: https://bbpress.org/plugins/topic/5?replies=4
In reply to: No Site Keymasterssuleiman,
I think I gave you some bad information before, sorry!
Try this, in your config.php set
$bb->new_keymaster = ‘admin’; // or whatever the name of the account is.
Then run bb-admin/install.php
Sorry for before, and let us know if this works.
In reply to: Can’t Login…This is getting impossible to read. Please start your own, new topic, everyone.
In reply to: Cookiescvanp,
Have you also changed WordPress’ cookies?
In reply to: Using WP template tagsabbaanthony, It looks like you’re using a copy of the code-in-development.
Try using the official bbPress release.
In reply to: print.cssHm.
"<?php option( 'uri' ); ?>my-templates/print.css"
Is the only way to do this at the moment.
In reply to: ValidationWe should be using CSS counters, but they are kind of annoying and complicated. That’ll get fixed in the next version.
If you’re not displaying the post numbers at all in the OL, I wold just take out the start attribute.
In reply to: number of topic depend on database size?Just one database is enough provided that the two bbPress installs have different values for their
$bb_table_prefix
settings in their config.php files.Like
bb_
for one andbb2_
orbb_cool_
(or whatever) for the other.In reply to: wpmu bbpress issuessuleiman, if you installed bbPress first and then changesd it’s user tables to integrate with WP, none of those users have any adminn capabilities in bbPress.
Follw the steps here https://bbpress.org/forums/topic/52?replies=21#post-795 and let us know.
In reply to: including templates and template fragmentsThis will be fixed in the next release of bbPress. Thanks!
In reply to: loading wordpress with bbpressAtsutane,
Can you disable Ultimate Tag Warrior to see if that fixes both problems by magic?
In reply to: loading wordpress with bbpressdoubter,
Can you try moving the file bb-includes/db-mysqli.php somewhere safe and then copying bb-includes/db.php to bb-includes/db-mysqli.php (so that the mysqli file is a duplicate of the other file)?
And, just to help troubleshoot, WordPress is working fine for you on that server?
In reply to: loading wordpress with bbpressdoubter,
$bb->wp_home = 'http://www.captainsdead.com';
That line in the code you pasted is missing a single quote at the end (before the semi colon).
Hope that works
In reply to: Installed, but can’t view postsjessind,
I tried your site in firefox and http:
//jessanastasia.com/forums/topic/1 gave a 404 not found reply (which was then caught by your WordPress for some reason and I ended up at your blog).
Which method did you use to set up permalinks? MultiViews or the rewrite stuff? Did you put the .htaccess file in the forums directory?
In reply to: Email subscriptionAs for RSS feeds and keeping track of lots of stuff, check out your “favorites” in your profile. You can add to them by clicking “Add this topic to your favorites” on thepage of the topic you want to add.
In reply to: loading wordpress with bbpressmokona,
The error is actually caused by the line above that on. Delete the line that says:
define(WPp_BB', true);
In reply to: Hot tag problembbPress grabs the 40 most popular tags. You probably have fewer than 40 tags, so it’s grabbing a couple tags with 0 topics in them.
This will clear up on its own as you accrue more tags. Otherwise, you can manually reduce the number of tags bbPress shows in the hot tags area. See this post about customizing the tag cloud.
In reply to: Can’t Login…cvanp, if it’s not a subdirectory, it isn’t as easy. You’ll have to change WordPress’ cookies and bbPress’.
In reply to: detail of Style.css ?I really like Firebug.
In reply to: How to customize bbpress titles ?There will be a filter for the title in the next release. Thanks!