Search Results for 'code'
-
Search Results
-
I would like to put an HR code between the post text and the signature but I can not find it. help?
Topic: strange links to pages
somehow my forum adds links to pages that do not exist. i dont understand this
for eg (the topic hast only 2 pages):
topic.php?id=15&page=7#post-92
what is this?

e: appears WITH and WITHOUT plugins acitvated.
could it be a “front page topics” bug?
Topic: Some accessibility fixes
Hi there!
I just started to experiment with bbPress and will integrate it into my family’s blog installation which of course runs WordPress.

While playing around with it, I noticed some missing labels on form controls. These missing associations cause screen readers to not pick up on the right stuff to speak when focus moves to a certain textbox, combobox or the like.
So, I went ahead and filed ticket #871 to deal with this and submitted a patch.
If you’re interested in accessibility, I invite you to follow that trac ticket!
Marco
I’m using WP/BBP as a site wide CMS. It’s been really great so far thanks to the light-weightness of bbPress. I’ve really just had to hack the tables and change a little code to get the extra info in there that I want.
The only issues I’m wondering about is how to get the user data on a non bbPress page… I need to see if the user is logged in, and then get their userId…
Just to give you an example, I allow the user to save certain things, and I use the user id from the wp/bbpress users table. Can anyone suggest a light weight way to do this?
Topic: Plugin localization?
Hi there!
Why don’t use plugin authors gettext localization as bbPress itself does?!
I start testing plugins for the german community at bbpress.de and find out that absolutely NO plugin could be used without direct translation. That’s a pitty and I really wonder about this situation

Regards
Jörg
bbPress 0.9 renamed the critical system email address that several plugins rely on (“admin_email” became “from_email”)
Unfortunately many plugin authors aren’t aware of this and the old setting is completely deleted from the database, which makes any older plugin that looks for “admin_email” fail and get a blank address and don’t anticipate/test for a blank. So they blindly insert the blank address into emails which causes the emailer to either fail or bounce the message.
A few of my plugins were affected, I just found another tonight, and there are several third-party ones still unpatched.
You can work around this problem by putting this into your
bb-config.php(anywhere on a new line)$bb->admin_email = 'email@your-forum.com';where
email@your-forum.comis the same email address you use inside bbPress onbb-admin/options-general.phpThis won’t hurt anything, causes no extra load of any kind and simply allows older plugins to work without additional edits until the authors get a chance to upgrade them.
(Just remember you “hard coded” this address if you ever change the main one for any reason. You can delete it after 1.0 is out and all plugins have upgraded. In fact the old email address will become unused after all the plugin upgrade anyway so this can’t hurt anything in practice.)