Search Results for '"wordpress"'
-
Search Results
-
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
Topic: 2.2 and Theme Compatibility
Dear community.
I have spent the last few (5) hours reading the various posts, trying to get bbpress to integrate with my custom WP theme. Unfortunately, I don’t have the knowledge (or enough) to figure out how to make the two work together.
Info
Wordpress: 3.4.2
Site link: http://www.restorationcoach.com/restoration_coach/forums/
Using this theme: http://www.templatemonster.com/wordpress-themes/39849.html
bbpress: 2.2My main issue seams to be css related. I think bbpress is and the theme are sharing css files, causing a funky appearance. Overall forum function seems to be working fine.
So far I’ve done the following.
Completely removed bbpress and installed new 2.2 version.
Read: http://codex.bbpress.org/theme-compatibility/ (this is for customizing the bbpress theme, if you want? And if you don’t, then leave the install as is?)
Watched: http://www.youtube.com/watch?v=lB2Oodx2GJw (not sure if this applies with 2.2)
Switched to Twentyeleven: Looks better, side bar is missing, and footer contact form, map and links are over top one another.I can see in firebug where both style.css and bbpress.css are being used to style the forum. Most specifically #page-content ul li. This, I believe, is causing the issues but not quite sure how to fix it.
Thank you in advance for the assistance.
Topic: Getting forum description
Hi,
I would like to ask – is there any function that returns the current forum description. By “forum description”, I mean the string that you can specify in WordPress GUI when creating new forum.
Thanks!
Hi. My site has a custom WP_Query (outside the main loop) in the header (in header.php), and another in the footer (in footer.php). On all/only my bbPress pages, the paragraph breaks in this content are missing, because wpautop is not applied as it normally is.
That’s because bbPress REMOVES THE FILTER “the_content”. I tracked it down to bbp_remove_all_filters( ‘the_content’ ); in bbpress/includes/core/theme-compat.php, line 633.
In that same file, I also see bbp_restore_all_filters(), which looks like it should fix the problem. But it’s not actually working on my custom queries.
So how can I apply bbp_restore_all_filters() to my custom WP_Query calls?
Thanks for any help here!
MY WORDPRESS INFO:
Wordpress v3.4.2
bbPress v2.2.1RELATED POST:
I also had a similar issue a month ago (http://bbpress.org/forums/topic/conflict-with-custom-wp_query-in-header-php/) where bbPress conflicted with these same WP_Query calls in my header and footer. But in that case, the main content from bbPress was REPLACING the content from my WP_Query. I somehow solved that problem by just changing my slugs. But I now see it was probably caused by add_filter( ‘the_content’, ‘bbp_replace_the_content’ );, also in this theme-compat.php file.So I made the update to 2.2.1 (everything was working fine on 2.2), and the plugin successfully installed and activated. However, when I went to look at the forums, they looked like this
I deactivated bbpress and re-activated it, and now it gives a 404 page, like so
Direct links to posts go to wordpress “pages” with a stream of text.
Any ideas? Anyone else having this happen to them?
Hi,
I’m upgrading my forum from a standalone installation to the newer wordpress plugin. The URL structure is a bit different:
Old bbPres (v1.03):
Main page: domain.com/forum
Forum pages: domain.com/forum/forum/{forum-name}
Subforum pages: domain.com/forum/forum/{forum-name}
Topic pages: domain.com/forum/topic/{topic-name}New bbPress (v2.2.1)
Main page: domain.com/blog/forums
Forum page: domain.com/blog/forums/forum/{forum-name}
Sub-forum page: domain.com/blog/forums/forum/{parent-forum}/{forum-name}
Topic pages: domain.com/blog/forums/topic/{topic-name}So the main issue I have is that the forum is now in the wordpress directory, whereas I’d rather it was outside. The other issue is that now sub-forums have the parent forum in the url.
I’d like to do two things:
-> Remove the /blog/ from the forums url
-> Redirect old sub-forums to the newer domains.Does anyone know the htaccess/mod_rewrite to do this?