Skip to:
Content
Pages
Categories
Search
Top
Bottom

I can’t create a new topic in bbPress front-end

Published on September 16th, 2015 by Anonymous User 7517021

I have trouble setting up bbPress.

I have created forums but when I try to create a topic (front-end) I get the following error:

ERROR: Are you sure you want to do that?

What does it mean? I have tried several times and with different themes (Twenty Twelve, Twenty Fourteen) but I get the same error every single time…

Html tags showing up in topics & replies

Published on September 15th, 2015 by Bet Hannon

I’m not finding anything in the forums here on this, but I’m new… maybe I’m just missing something.

Topics & replies in our bbpress forums are displaying html tags like this:

<p>Hi everyone!</p><p>Included here is the agenda for the meeting on Saturday. Again, we’re gathering at 9:30, setting up, having some coffee, and then kicking off the meeting at 10am. We’ve got the space until 5, but let’s be super productive and get out of there early!</p><p> </p><p>See you tomorrow,</p><p>Patrick</p><p>———————————————————————————-</p><p class=”MsoNormal” style=”text-align: center;” align=”center”><b style=”mso-bidi-font-weight: normal;”><u>Outdoor Ministries Committee</u></b></p><p class=”MsoNormal” style=”text-align: center;” align=”center”>September 12, 2015 10:00am</p><p class=”MsoNormal” style=”text-align: center;” align=”center”>In-Person Annual Fall Debrief/Kick-Off</p><p class=”MsoNormal”> </p>

Why is this happening, and how can I get it to stop?

I’m running bbpress, bbP Private Groups, bbPress Enable TinyMCE Visual Tab, and GD bbPress Toolbox. Is this a known issue with one of them– or a combo of them?

How to create a template for custom taxonomy ?

Published on September 15th, 2015 by wpman

I have a taxonomy:location
I try to copy taxonomy-topic-tag.php ,then rename taxonomy-location.php .Layout displayed correctly but filtering topic not correctly.For instance:
When I type http://www.domain.com/forums/location/school. It will display all topic of location.It doesn’t filter topic for school. Which php file I should edit ?Is there any easily alternate method to create a template for custom taxonomy?

bbPress tweaks – questions

Published on September 15th, 2015 by tkse

I’ve been going through Layout and Functionality today, trying to fix some issue I’m currently experiencing with my bbPress forum. There are some things I can’t quite figure out:

1) Are Private forums visible to all logged in users? I thought for sure it restricted access to only moderators and keymasters, but when I did some testing I noticed they’re very much visible. I didn’t see anything about it in the Layout and Funcionality article, so any tips on having a truly private forum for me and my forum staff?

2) I wanted to prevent users changing their display name, so they would be forced to display themselves as whatever their username is, however, when editing form-user-edit.php they still had access to do so in the WP-Admin. Following the steps in Restricting access to WP Admin did nothing. The WP Admin Bar was still visible, and Participants or lower still have access to it.

Setting New Role Upon Login with iMember360 Plugin

Published on September 15th, 2015 by davellan

So iMember360 has a hook that I am trying to attach with to bbPress that I am struggling to do.

I want to set it up so that when a user logins, and they contain certain tags (detected by iMember360), to change bbPress roles.

Below is the hook I am trying to use.

function my_i4w_authenticated_lremote_ogin($wp_user, $arrINFU) {
  //
  // $wp_user is the user object (same as the standard $current_user)
  //
  // $contact is an array with all contact record fields.
  // add your code to perform any desired action, such as sending an email notification
  // or updating contact record to reflect the login that just took place

  $your_code_goes_here = true;

}

add_action('i4w_authenticated_remote_login', 'my_i4w_authenticated_remote_login',10,2);

Here is what I tried to do:

function i4w_authenticated_remote_login_action($user, $contact) {
  global $SESSION;
  IF ($arrTAGS = explode(',', $SESSION['i4wuser']['Groups'])) :
    IF (in_array(38181, $arrTAGS) || in_array(38185, $arrTAGS) || in_array(38193, $arrTAGS)) :
      $bbp = bbpress();
      $bbp->current_user = new WP_User($user->ID);
	  $new_role_forum_role=”bbp_participant”;
	  bbp_set_user_role( $bbp->current_user, $new_role_forum_role );
    ELSEIF (in_array(38177, $arrTAGS) || in_array(38195, $arrTAGS) || in_array(38183, $arrTAGS) || in_array(38187, $arrTAGS) || in_array(38189, $arrTAGS)) :
      $bbp = bbpress();
      $bbp->current_user = new WP_User($user->ID);
	  $new_role_forum_role=”bbp_spectator”;
	  bbp_set_user_role( $bbp->current_user, $new_role_forum_role );
    ENDIF;
  ENDIF;
}
add_action('i4w_authenticated_remote_login', 'i4w_authenticated_remote_login_action', 10, 2);

However, nothing happens. I am not sure what I am missing here, but I suspect it is my lack of understanding with bbPress that is the issue.

members cannot reply to topics

Published on September 15th, 2015 by runamuck

We are using bbPress v. 2.5.8, WP v. 4.3.1.
Also using plugins: Ultimate Member, bbp Private Groups, bbp Style Pack

Some users are unable to reply to topics, and I’ve tried everything I could think of. Double checked their roles look, the permissions in the forums and topics. Some have been able to access before and have been able to reply, but now cannot. Others have never been able to and still can’t reply.

Akismet for forums have been disabled. I can’t think of anything else that I can do and would appreciate some tips! TIA.

log error

Published on September 15th, 2015 by billreefer

At websynthesis I am getting a repetitive server error in log. Can you advise any troubleshooting?

> 9/14/2015 8:45:22 PM – www: PHP Warning: in_array() expects parameter 2 to
> be array, null given in
> /var/www/contracostabee.com/wp-content/plugins/bbpress/includes/common/fun
> ctions.php on line 1446

Users have to log in twice

Published on September 15th, 2015 by osarusan

Hello, I just installed bbpress on my site, and I am having a weird issue where users have to log in twice.

When I log in from the bbpress login widget, it redirects me to the “answer this math question” wordpress captcha page. After answering the math question, it then redirects me to the main wordpress backend login. After logging in again there, it takes me back to my wordpress front page, rather than the bbpress login page… What is going on here? This will be very confusing to users. How do I make it so once you log in from the bbpress login widget, it takes you to the forum (and so you only have to log in once)?

Link to latest reply in a topic

Published on September 15th, 2015 by leo-l

I’m looking to add a link at the top of a topic that will jump the user to the last reply/post in that topic.

I’m assuming i can do this by building a link to /#post-[ID OF POST] but im not sure how i can get the ID of the last post to insert into the link

Any help will be greatly appreciated

Reply topic very slow – page start to reload and still reload until i press f5

Published on September 15th, 2015 by fagworio

I´m using the latest bbpress version.
My problem is:
When i’m replayed a topic in bbpress the page start to reload and still reload.
The page dont be update and i need to press f5 to reload the page to see my topic replay.
I don’t have a lot of topics and users.

So, how to speed up the bbpress topic or what kind of issue is this?

Skip to toolbar