Search Results for '\"wordpress\"'
-
Search Results
-
… might not be to use bbpress at all.
I have a standalone bbpress that I would love to import & integrate. I assumed that the “forum” would be a category on my wp install, and the topics subcategories, and the forum posts seen as wp posts and comments.
This would allow my wp site to act as neither blog nor forum but a truly integrated website, with everyone acting like an author, and a central way for me to control the content flow.
But from my explorations I discovered that it doesn’t work this way at all. Forum posts are not wp posts, there’s still 2 separate systems in this “integrated” model. So the comments on my wp install have a different codebase than the comments/replies in my forum, for example.
I’m considering totally tricking out one of the many form plugins (Gravity Forms, etc) to create “posts” in the “forum” category in my wp install. So the whole concept of the forum is nothing more than having logged in users create guest posts in a truly integrated wp install.
Just curious if anyone has done this — I can’t be the first guy to think of this idea. The biggest drawback so far is that i would need to find a way to import the posts in my old standalone forum to become posts in my new setup.
Topic: Page bbpress or not
Hello,
I want to add a link with the “pagetitle” of bbpress forum page.bbpress is running in a wordpress page but how I can find it? where it is?
I want to past a simply code asif ( !is_user_logged_in()&&is_page('???') ) {my link...thank you for helping.
WP: 3.4.1
bbpress: 2.1.2
theme: Frisco for BuddyPressTopic: forum with form
Hello, I’m trying to set a wordpress site, where for the forum, people fill a form : reach or propose a travel, place they live, number of seat in their car, and then enter the form that will appear with a css style and people can interact to it …
Any idea of how can I create a form forum like that ?
Thanks in advance,
OliI am trying to get rid of the text: “Add this topic to your favorites” and “This topic is one your favorites”, as I am using a background css image instead.
The icons are working beautifully, bar the fact that the text comes up.
You will also notice that if you click the star to add it to your favorites, another star appears, which is a link to all your favorites. It appears the link to the forum favorites doesn’t have its own css class, which is why both are coming up as stars. I’d like to get rid of that.
Not sure if this will fit in with your plugin bbPress String Swap David, if you see this.
If you want to see this in action on my forum (still being built), log in at http://netballscoop.com/log-in/ with Username: testing and Password: testing. The forums are at http://netballscoop.com/forums and click on a single topic to see the favorites and subscriptions at the top underneath the title.
I am using WordPress 3.4.2 and bbPress 2.1.2.
Hey guys, my website is alphaonegaming.com, and I have installed the bbpress wordpress plugin, but when I go to make a user registration page, the template for making it so does not appear. I am using the lucid theme by elegant themes if that helps.
Topic: bbPress 2.1.2 Login Notice
I have WordPress 3.4.2 and bbPress plugin version 2.1.2.
I recently used the migration tool to import the data from an old bbPress 1.1 forum. Everything seemed to go quite well. I did lose some topics but I can certainly live with it.
I have, however, noticed that the Login Notice “You Must be logged in to post a topic” is NOT showing when users are not logged in.
I can see the code (or what I think is the code) in the bbPress template but it just won’t show.
Yous assistance would be appreciated.
Hi.
I have WordPress site with bbPress. Actually, after a user creates a new topic it goes to the new topic page.
Is it possible to force system to redirect to forum topic list page ? The action property of the tag is empty, so I don’t know where this submit is processed.
Thank you.
I know how to create child themes in WordPress, but given that bbpress uses a special theme within the plugins subdirectory I am confused as to where it goes. Can someone please tell me where to put it?
Does the child theme go in this directory?
/Clean_Test/wp-content/plugins/bbpress/bbp-themesOr, here:
/Clean_Test/wp-content/plugins/bbpress/bbp-themes/bbp-twentyten/bbpressOr, some other place?
Current site:
Wordpress V 3.4.2
bbpress V 2.1.2
Buddypress V 1.6.1Old site:
Wordpress 1 user
phpbb v 3.10 40 usersI converted my forums over to bbpress. Everything went fine.
All the threads and users where there.
I installed buddypress as well and that works fine.
buddypress automatically synced up with all of the existing users.I’m building the site up though so the activity on the site is low. However I’ve noticed something. All of the buddypress features work perfectly. However with bbpress no one can post or reply. In fact the only way admin can do anything is to do so through the dashboard. If admin is broswing the forum he cant reply or create a new topic.
The edit box is there, but when you click ‘submit’ it just reloads the page and nothing happens. I’ve tried this with users at all levels.I wanted to integrate bbpress into buddypress, but the only way I can do that and retain my existing data is to choose group forums with existing install, but that wont work because i dont have a bb-config.php
I have completely disabled buddypress and the problem still exists. Somewhere something in my bbpress configuration must be messed up. any help?
I’m trying to add featured images to forums. I have successfully filtered the register_post_type call like so;
/** * Add thumbnails to forums */ function ys_forum_featured_images( $post_type ) { $post_type['supports'][] = 'thumbnail'; return $post_type; } add_filter( 'bbp_register_forum_post_type', 'ys_forum_featured_images' );That did not, however add the meta box to the post edit page so I further used the following;
/** * Add featured image meta box */ function ys_bbp_featured_images(){ add_meta_box('postimagediv', __('Featured Image'), 'post_thumbnail_meta_box', 'forum', 'side', 'low'); } add_action('add_meta_boxes', 'ys_bbp_featured_images', 100);The meta box then appears but in the image details I see the “Insert into post” button and “Delete” link but no “Use as featured image” link.
Any idea how I get that added?
The only thing I could find were these tickets talking about the link appearing when it shouldn’t:
http://bbpress.trac.wordpress.org/ticket/1633
http://core.trac.wordpress.org/ticket/18669