Skip to:
Content
Pages
Categories
Search
Top
Bottom

Import from xenforo 2

Published on May 20th, 2018 by Mr Lucky

Does anyone know if it is possible to import from a xenforo 2 database?

Thanks

Paypal plugin

Published on May 19th, 2018 by ed5001

Hallo my WordPress version is 4.9.6, bbPress version 2.5.14, i dont have a site im now install WP and bbPress on my localhost computer and im learning, i please of advice.
Im new in wordpress i want use bbpress commercially. I am looking for a solution which after payment of paypal, credit card, debit cart, automatically assigned to the user points that he could use for example his topic (in bbPress) would be sticked on top of the list etc. At the same time the plugin would protect against chargeback, etc.
I find the plugin “PayPal Plus for WooCommerce” but when i scan it with virustotal.com, by the way, see for yourself: https://www.virustotal.com/#/file/0a9bac644a1fd7c2bab5c56c067a9fef627bd84c59d5c36933aa4528024e7054/detection
Please help, give me some advice.
Thanks

How delete all IP Addresses?

Published on May 19th, 2018 by schranx

How can i delete all IP addresses that stored in the bbpress Data?

Broken footer on bbPress forum

Published on May 19th, 2018 by andreyart

Hi!

I use dfd Native theme. And have no problems on other pages, but on bbPress forum my footer is broken,you can see it via this link:

https://www.elitecurrensea.com/forums/

Please help me with this issue, maybe i need to edit some files manually?

Thank you

Hiding website URL field for guest submission

Published on May 18th, 2018 by keshabee

Is there a way to hide the the website field in bbpress for guest submissions or possib;y achieve this through code
or possibly disable the website URl Filed area and hide it
https://postimg.cc/image/68qfsj2vb/
Thank you

Instructor forum role assigned to everyone

Published on May 18th, 2018 by inevitablebliss

Hello there!

Ever since starting to work with bbPress (and Learnpress), all new users were assigned the site roles ‘subscriber, and participant’ and the forum role ‘instructor’.

I don’t want all forum users to have the role ‘instructor’, since they aren’t. I have checked, but my default is really set to participant.

See screenshots:

https://drive.google.com/open?id=1RlJVw0QHIVV3Hp-MWvOdtYjh5cKAM6MR

https://drive.google.com/open?id=1EAzfa2gQLyv20hmCVHGW65ueb8KBNUyV

How can I make sure people will be assigned a normal forum role instead?

My current versions (but I have had this issue for about 1,5 years now):

WordPress 4.9.6
BbPress Version 2.5.14
BuddyPress Version 3.0.0
LearnPress Version 3.0.8
LearnPress BbPress integration Version 3.0.1
LearnPress BuddyPress integration Version 3.0.2

My website: www.InevitableBliss.com
The forum: https://inevitablebliss.com/community/

Bug with Timestamp Link

Published on May 18th, 2018 by emgb_520

We have a few forums using bbPress on our site and I think there may be a bug.

When you click on the time stamp under “Latest” for a particular forum, it is supposed to take you to that post, but sometimes it doesn’t. And sometimes when admin is logged out, the post doesn’t even show up when trying to go to it (even on the non-premium, unrestricted forums).

Also, we have 2 of the 4 forums restricted because they are premium. When on the forum list page, clicking on the forum title of a premium forum goes to a restricted page. BUT when clicking on the timestamp of the latest post for that premium forum, it lets you see the thread. This isn’t supposed to happen because the forum is restricted.

Please help! Thanks in advance!

BBPress is Incompatible with Search Everything plugin

Published on May 18th, 2018 by vanduzled

When the Search EVerything plugin is activated, the topics won’t appear. What I did was deactivated all the plugins and reactivated them one by one to see what causes the problem. It was the Search Everyhing plugin.

I also deactivated the “Allow forum wide search” from the forum settings but it’s the same.

By the way, I am using the bbpress plugin inside a multisite. I’m not sure if that helps or not.

Is there a way to fix this?

change copy in error message

Published on May 17th, 2018 by jessiemele

I am using a function to restrict the ability to create new topics in specific forums:

`function buddydev_is_restricted_forum( $forum_id ) {
$restricted_forum_ids = array( 1347, 93, 91, 89, 95, 1348, 1394, 1349 );
if ( in_array( $forum_id, $restricted_forum_ids ) ) {
return true;
}
return false;
}
function buddydev_bbp_restrict_topic_creation( $can ) {
if ( ! bbp_is_user_keymaster() && bbp_is_single_forum() && buddydev_is_restricted_forum( bbp_get_forum_id() ) ) {
$can = false;
}
return $can;
}
add_filter( ‘bbp_current_user_can_publish_topics’, ‘buddydev_bbp_restrict_topic_creation’ );

function buddydev_restrict_from_posting_topic( $forum_id ) {
if ( ! bbp_is_user_keymaster() && buddydev_is_restricted_forum( $forum_id ) ) {
//set error on bbpress and it will not allow creating topic
bbp_add_error( 403, __( ‘Not allowed’ ) );
}
}
add_action( ‘bbp_new_topic_pre_extras’, ‘buddydev_restrict_from_posting_topic’ );’

The function works and on those specific forum pages I get an error message that says “You cannot create new topics.” I want to change that copy to say something different but I can’t seem to find where it is coming from. I looked for a 403 error but found nothing and I tried to change the ‘Not allowed’ portion of the ( 403, __( ‘Not allowed’ ) ); but that changed nothing as well.

Change bbpress post type?

Published on May 17th, 2018 by yusareba

I would like to change my default post type from standard to video.

Is there any way to do this?

Skip to toolbar