Search Results for 'bbpress'
-
Search Results
-
Topic: a few set-up questions
Hi, all –
I think I’m pretty close to being ready to go live. Just a few issues:
1. How does one make a post “sticky?” I’ve looked through the dashboard and the forums (I promise), and haven’t found the answer.
2. What are the provisions for letting users post images?
3. I set up a gravatar, but it doesn’t seem to be working. Anything I should know?
Thanks!
I’ve started coding my first bbPress plugin and I’m now pretty familiar with most of the actions and filters and some of the inner workings of bbPress but I’m stuck.
The idea of my plugin is to insert AdSense code block in every topic at post X where X is either random or defined by the admin. I’ve been messing around with the post_text filter which allows me to change the text of any given post and insert an AdSense block. I can mess around with the author name and stuff too. The problem is that by doing this I replace the current post with the AdSense block instead of simply inserting it before or after the post, thus the post I replace isn’t visible.
To get around this I tried to first display the AdSense post then include the post.php file in the currently selected theme. But this crashes, I think due to an infinite loop. I then noticed the pre_post filter which looked promising but I couldn’t find where it’s defined or how it’s used.
In short, I need an alternative approach or solution to create a custom (and theme-independent) post.
My code, so far, is visible here: http://pastebin.com/m1cbf6b24
Cheers
I’m working with bbPress in some languages with special characters, but I think that the way those are being handled when making for instance topic_slug isn’t the best way. Is it something which might be changes in the core, or which function should I “change” to add the nicer translation. The following three examples are handled the same way in both bbPress and WordPress.
Some examples from the Danish alphabet:
– æ/Æ > ae (not changed at all)
– ø/Ø > oe (not changed at all)
– å/Å > aa (changed to a at the moment)
I only have one forum, so there is no point in BBPress giving me a seperate front page and Latest Disussions list. Is there an elegant way for me to integrate the sidebar into the forum listings page? I tried chopping up the templates but I can’t seem to get the code right.
Hi all,
I have a problem with localization of forum.
/**
* bbPress Localized Language, defaults to English.
*
* Change this to localize bbPress. A corresponding MO file for the chosen
* language must be installed to a directory called “my-languages” in the root
* directory of bbPress. For example, install de.mo to “my-languages” and set
* BB_LANG to ‘de’ to enable German language support.
*/
define(‘BB_LANG’, ‘it_IT’);
I have edited the bb-config.php and made the directory called “my-languages” in the root directory of bbpress with inside my languages file, but i didn’t see any change.
I have make a deep integration with wp 2.7
Thanks
..