Whenever i try to test my forum and post a new topic i get the “This webpage has a redirect loop”blah blah blah resulted in too many redirects.” Before anybody suggests it, i have already tried to deactivate all plugins and change my theme to 2010, still the same crapola. I’ve already looked in my cpanel too, no redirects are setup there….Any suggestions?
http://financedhomes.ca/General%20Forums/
Hi,
I’m having issues with the bbpress widget which shows recent replies. for some reason it seems totally incapable of keeping the list aligned correctly. I thought it might be my theme so I went back to the standard buddypress theme and had exactly the same problem. It just can’t keep the dates aligned correctly. Anyone able to help on this?

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 am using WP 3.4.2, BBPpress 2.1.2, and the latest Graphene theme. Is there anyway to add a preview button to the visual editor? I found a wp plugin that claims to do it in fullscreen mode, but it didn’t seem to work when I was using the visual editor for replying to a topic or starting a new topic.
Any suggestions, help, etc. much appreciated.
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-themes
Or, here:
/Clean_Test/wp-content/plugins/bbpress/bbp-themes/bbp-twentyten/bbpress
Or, some other place?
**Hi Admin Team . Please Put A New Translation Project In Glot Press As Persian Name ( Persian Language In Iran ) .Thanks a lot . **
This unique and useful software can be used in many different ways. It can help to optimize an image that is transmitted from a web camera to any site that has a broadcast possibility. It can be used to create a site, so it can be of use for webmasters. It has special functionalities to create web pages, record video clips, edit video clips, capture snapshots. It can be used in different places and for different purposes also: in banks to survey the building and its outskirts, in offices to keep track of the workers, at home to keep an eye on your child that plays in another room or a dog in the garden… The program has a guide in a pdf file that aids to understand how it works. You can also set the sound with the help of this program. The software can be used in a local network or on the Internet. The great advantage of this software is that it works as medium between incompatible software. Sometimes a program would not accept a file from your computer just because it is not compatible with it. That is why you need Perfect Picture Control Pack. Another good thing about it is that it works in 15 languages and can be understood by people from many countries over the globe.
http://www.pysoft.com
Hidy ho,
I’m working on creating a child theme for a site and am looking for the right tutorials. I found this link below: https://codex.bbpress.org/legacy/step-by-step-guide-to-creating-a-custom-bbpress-theme/ and was pretty sure this was the most current. Can anyone confirm this is the most up-to-date information for child theming bbpress?
I found and followed a different tutorial that also had “legacy” in the slug – so any help you can offer here would be appreciated.
Thank you.
Luke
Current site:
Wordpress V 3.4.2
bbpress V 2.1.2
Buddypress V 1.6.1
Old site:
Wordpress 1 user
phpbb v 3.10 40 users
I 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:
https://bbpress.trac.wordpress.org/ticket/1633
https://core.trac.wordpress.org/ticket/18669