Search Results for 'bbpress'
-
Search Results
-
Topic: Create New Topic in “%s”
Hello,
I have the following problem:
In the form-topic.php in somewhere aroung line 43 there is written:
bbp_is_single_forum() ? printf( __( ‘Create New Topic in “%s”’, ‘bbpress’ ), bbp_get_forum_title() ) : _e( ‘Create New Topic’, ‘bbpress’ );
Now on my website it shows: Forum_titleCreate New Topic in “”. Somehow it is not working that %s is replaced by the bbp_get_forum_title() information!
Anther problem that occured:
When starting a Forum as private and then changing it to public the topics that were created as in the “private mode” still remain private and I could not find a way to change that back.Thanks for working on bbpress!
Tilman
actual wordpress and bbpress versionTopic: Legacy versions
Looking for BBPress plugin 2.2.1 or 2.2. Can’t seem to find it here.
In any users “Profile”, clicking on “Topics Started” or “Replies Created” displays “Viewing topic x (of x total)” or “Viewing x posts (of x total)” but non of the Topics or Replies are displayed. This had been working. Not sure if it went away in 2.2.1 or 2.2.2.
WP 3.4.2
BBPress 2.2.2Thanks, any help appreciated!
I did the foolish thing of changing two variables at the same time and now I’m not sure what I caused. Recently I upgraded to bbPress 2.2.1 and at the same time moved to Twenty Eleven theme (wanted a responsive bbPress theme). Had a couple of problems which I googled and resolved:
1) no side bars showed up on Forum & Topic pages (fixed by installing Twenty Eleven Theme Extensions & Enabling Widgets on single post pages)
2) Ultimate Tiny MCE was no longer showing up .. this was fixed by John’s helpful advice in:
No more Ultimate TinyMCE buttons in fancy editor after latest 2.2 update.
And I noticed a third issue, which was for ordered and unordered lists, they longer had bullets/numbers. I upgraded to bbPress 2.2.2 today hoping that might have fixed the problem but the behaviour is still the same.
I looked at the element information in Chrome and it shows that the list-style-type is set to “none” by bbpress.css. This is true for both ul and ol type lists. I can’t be sure whether it is Twenty Eleven or the bbPress updates which caused the formatting to change but the fact bbpress.css was involved pointed me here.
Being a pretty newbie guy from CSS perspective, I don’t know where and how I show try override the style type.
Suggestions greatly appreciated.
regards, Paul
I have a WP 3.4.2 multisite subdomain installation, with buddypress and bbpress. However, my bbpress is activated locally only on a subdomain, where I have a couple of forums. Since upgrading to 2.2 (actually, I didn’t detect the problem until 2.2.2), my menu forums page no longer shows a directory of my forums. The menu is set to http://subdomain.domain.com/forums/. What changed and how do I get it back to showing the links to the forums when the menu item is clicked (like it did before the upgrade)?
Topic: Import Forums Fatal Error
WordPress Version: 3.4.2
bbPress Version: 2.2.2
Theme: Custom Community
Hello, I am considering changing my site from phpBB3 forums to bbPress to better integrate with my WordPress home page.
I’m attempting to Import my forums into my test site, on another database, to test bbPress’ “Import Forums”. I’ve filled out all the necessary information, but the first time I ran it I got messages at the bottom that 0 Members had been imported 0 posts, etc all the way down the line. I tried running it again and I get this message:
“Fatal error: Class ‘Example’ not found in /homepages/33/d410891000/htdocs/THEMETEST/wp-content/plugins/bbpress/includes/admin/converter.php on line 1291”
I’ve attempted to reset the process by choosing to Purge Previous Import and save, then Start Over and save, but I continue to get the same message when I try to import.
I tried to resolve this on my own, but I searched for an hour online before I even found that bbPress has an importer built in! Unfortunately stuff from the last five years had priority in the search. Also, I could not find a search on this site, so I started Googling “bbpress.org import forums” but still no answers, so any help would be appreciated.
One more thing: I don’t have so many members that I couldn’t create their accounts myself if I *had* to, so if anyone knows of an easier way to just import the forums and posts, that might work.
Thanks in advance for your time.
To add standard wp post_tag support for BBPress – Post Type – Topic… I added the following code starting about line 557 to bbpress/bbpress.php
// Topic Taxonomies
$post_type['taxonomies'] = array(
'post_tag'
);// Register Topic content type
register_post_type(
bbp_get_topic_post_type(),
apply_filters( 'bbp_register_topic_post_type', array(
'taxonomies' => $post_type['taxonomies'],
To get the topics to show on regular wordpress tag pages I used the snippet from Justin Tadlock edited for tag pages and post type topic.
After limited testing, everything seems to work as I wanted – bbpress topics show up on regular post_tag archive pages – as long as the tag is added to the topic from the Admin side.
Because I know enough abut wordpress to occasionally be dangerous, my questions:
1. Is this a bad idea for some reason I don’t know about?
2. Provided it’s not a terrible idea, Is there a way to future proof this hack? I tried creating a bbpress directory in my themes main directory and adding the edited bbpress.php there, but it didn’t work.Any thoughts would be greatly appreciated,
JW