Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: How do I refer to current user’s name?

davidbessler,

Your theme needs to have a call to bb_head() in its header.php.

If you’re using a version of the default header, make sure bb_head() is actually being executed on every page load. There was a bug in early versions of bbPress that prevented bb_head() from being called on anything but topic pages.

As an aside, if you’re adding javascript, you should definitely use bb_enqueue_script().

bb_enqueue_script( 'give-it-some-name', '/soruce/file.js');

Skip to toolbar