Forum Replies Created
-
In reply to: Installed, but can’t view posts
Perhaps you have not yet set up Pretty permalinks.
In reply to: Using WP template tagsAfther bbPress is installed, if you wish to use WordPress’ template tags, you will need to include a line like the above in bbPress’ config.php.
In reply to: Cannot login, Hide forumzapata,
That is a bbPress plugin, not a WordPress plugin. It should be installed in bbPress’ my-plugins/ directory. See https://bbpress.org/documentation/faq/#customization-folders (the bottom of that page).
In reply to: Are BBPress threads search engine searchable?Yes, and you’re right
In reply to: img plugin bugTry <img src=”whatever” />
Nice catch, though. Thanks!
In reply to: Can’t Login…cvanp, Is your bbPress URL a “subdirectory” of your WP URL?
In reply to: Can’t Login…whitelion, If you’re logged in, but can’t admin, it may be that there are no users with admin capabilities. This can happen if you install bbPress and then later intograte it with WordPress.
To fix this, try setting
$bb->new_keymaster = true;
in bbPress config.php and then re-running /bb-admin/install.php.You should be able to type in your username if there are not any keymasters already. Delete that new line in config.php once you’re done.
In reply to: Topic Poster next to Topic Nametopic_author() and/or get_topic_author() should do the trick.
In reply to: Determine if its a member or an admintry
if ( bb_current_user_can( 'administrate' ) ) {
// do something
} else {
// do something else
}
If you look in bb-includes/capabilities.php, you’ll see a list of available capabilities you an check for, if you want more fine grained control than the above.
In reply to: Load Bbpress into WordPressandyro,
It looks like you need to set up pretty permalinks.
In reply to: Problems installingIt looks like not al of the files were uploaded to your host correctly (this is a notorious problem with FTP). Try deleting the files and uploading them again (just re-uploading them and hoping they will overwrite the old files may not work).
In reply to: Can’t Login…devils_advocate:
$bb->domain = ‘http://acd.us’;
$bb->path = ‘/cms/bbpress/’;
$bb->wp_home = ‘http://acd.us/cms’;
$bb->wp_siteurl = ‘http://acd.us/cms’;
Try those values.
In reply to: Cache control while loginWhat browser are you using?
In reply to: Can’t Login…They are some of the settings you set up in bbPress’ config.php before you first installed things.
In reply to: Img tag pluginhttps://bbpress.org/plugins/topic/5
(The plugin browser you’ll see at that link is still in the early stages of its development. Go easy on it )
In reply to: How to read bb_topicmeta?nolageek, That information will mostly be useful to plugin authors. You probably won’t need to know that in order to customize your site.
I hope not, anyway
In reply to: Can’t Login…Please tell me the following settings:
$bb->domain
$bb->path
$bb->wp_prefix
$bb->wp_home
$bb->wp_siteurl
In reply to: Problems installinghyper123,
That’s very hard to read (not your fault).
Can you paste it http://pastebin.ca/ and the post the link here?
In reply to: Img tag pluginI’ll have a plugin for this soon (tonight or tomorrow).
In reply to: Installation problemsSome of your settings aren’t quite right.
$bb->domain = ‘http://domain.com’;
$bb->path = ‘/cms/forums/’;
$bb->wp_prefix = ‘wp_’; // or whatever the prefix is. It should not be
true
Try that on, and let us know.
Also, I’m not sure what you mean by the links being broken in the bbpress-integration WordPress plugin. Can you explain it differently?
In reply to: Wiki Integration: WordPress & bbPressI don’t know about other wiki software, but I happen to know that the blicki plugin for WP is under active development.
http://dev.wp-plugins.org/browser/blicki/trunk/
I couldn’t find a real webpage for it yet. Soon, I’m sure.
In reply to: How to read bb_topicmeta?Unlike WP, topic meta is accessed throught the topic object.
update_topicmeta( 5, ‘my_meta’, ‘yay’ );
$topic = get_topic( 5 );
echo $topic->my_meta; // outputs: yay
In reply to: Can’t Login…Are you integrating this with WP, or is it a standalone install?
In reply to: Installed, but can’t view postsWhat are your $bb->domain and $bb->path settings?
In reply to: how to change a background, colors, CSS, …….?n22, try deleting the .htaccess file in your bb-templates directory.