Search Results for 'bbpress'
-
Search Results
-
no experience with wordpress or bbpress but it looked great so i installed it… next up was an attempt to “import” my phpbb data to bbpress using the dashboard import tool but, sadly, a phpbb install plugin was not among those listed in the dashboard so i had to search the plugins directory… not knowing which one was best, i blindly chose the “CMS2CMS: phpBB to bbPress Forum Convertor” and began the migration process.. well surprise, surprise, shortly after the program began the migration a popup window reared its ugly head asking for $38 in order to complete a full migration… what the f is that all about? so is the wordpress life? wordpress plugin life? plugins are listed with no indication that they cost x amount of dollars until after you install the thing and try to use it? what sort of nonsense is that? how does this practice fly with wordpress? it’s enough to send a prospective wordpress user running in the direction of other alternatives, good grief…
i’m having a bit of a tough time understanding the wordpress flow and my exact needs in order to setup a standalone wordpress-based forum…..
– do i need both bbpress and buddypress?
– assuming i don’t “need” both, is it advantageous to have both?
– do i need a wordpress page? i thought this was the case, so i registered and signed up for an annual wordpress account.. now that i’ve installed bbpress, it appears that i don’t actually need a wordpress page or an annual account, is this correct?
– how do i import a phpbb 3.1 forum into wordpress? i read the tutorial but a phpbb import tool isn’t included among the other import tools…my goal is to set up a phpbb-type forum/discussion, i’m not interested a wordpress blog or the like, just a discussion board. is this something i can achieve with bbpress, bbbuddy, the combo of both? or for a standalone forum is phpbb actually recommended over a wordpress-based option? thank you for your time.
Hi!
Weāre migrating from IPB to Buddypress/bbpress and now Iāve got some questions. With IPB we had the possibility to attach different rights to certain topics/forums. For example: we got a crew-forum, with all kind of topics in it. These topics and forum are only visible for crewmembers, ānormalā members canāt see this topics. Is there a way to manage this in Buddypress? Maybe with a plugin or something?
Thank you very much!
Greetings,
AluarthTopic: User Self-delete?
Hi,
Thanks for such a well thought out plug-in and this forum. I am a *total* newbie at this… and this seems totally confounding to me. Your help will be appreciated.
Apparently when I enable bbpress, it adds an option for the user to delete themselves off of the right hand menu, with Settings etc.
This plug-in is being proposed to be used in a wp-based intranet.
See, we don’t want the users to annihilate themselves. So it seems like a bug, not a feature, if I can’t disable it.
Thanks
I’ve read a lot of the documentation and posts on this, but it unfortunately is not sinking into my skull. From what I can tell, there are basically three pages to the standard bbPress installation & usage: Forum Index page, Forum page, and Topic page. I saw something referring to the
wp-content/plugins/bbpress/templates/default/bbpressfolder, available after installing bbPress. How do I know which of these files to copy/modify, and to which file name should I copy it? Any help or insight you might be able to offer would be appreciated. I am completely lost on this.I have my wordpress search configured to include bbpress forum topics; however, the bbpress search only searches forums topics. How do I include wordpress pages in the forum search?
Thank you.
Anyone know how to troubleshoot why bbPress notifications go to some people but not others? For example: I gave the same permissions to a handful of people. Those permissions have notifications when there is a new topic or a reply to a topic… only some of the people with those permissions are receiving the new topic e-mail notification. I’ve looked in junk folders (not there)… have no idea why some people aren’t receiving them. Any idea how to troubleshoot this?
Topic: Spam – false positives
Some users are getting their posts and new topics flagged in my bbPress/Wordpress site as spam. They are long-time contributors with valid and thoughtful comments. It seems that bbPress occasionally gets too aggressive flagging valid posts as spam. I am running the latest bbPress (2.5.10) and WordPress (4.5.3) versions. Is there anyway to correct this situation?
I have been using bbPress on my site for sometime and it has been working fine. Recently, I notice that I am getting a 404 error when trying to view page 2 – 16 of the topic list for “All Forums”. I am using standard slugs and paths for all of my forums and they are all setup to be private for logged in users. Viewing of page 2 or higher of topics works fine for any of the individual forums on my site but when I try to do this for n1fd.org/forums/page/2/ I get a 404 error. I have tried disabling all of my recently installed plugins and I’ve tried regenerating all permalinks and neither of these steps helped. I am using the standard Twenty Fourteen theme.
Hello everyone.
I have been issues with sorting my BBpress forum topic on the front end.
So i tried to use a custom function i got from one of the threads.
Here is the code i used.
//* Change sort order of Topics within a specified bbpress forum
function my_custom_display_topic_index_query ($args) {
$thisforumid = bbp_get_forum_id();if($thisforumid == 43135) {
$args[‘orderby’] = ‘date’;
$args[‘order’] = ‘ASC’;
}return $args;
}
add_filter(‘bbp_before_has_topics_parse_args’, ‘my_custom_display_topic_index_query ‘ );and i got this error
Warning: call_user_func_array() expects parameter 1 to be a valid callback, function ‘my_custom_display_topic_index_query ‘ not found or invalid function name in /home/flexol5/public_html/wp-includes/plugin.php on line 235
Warning: array_merge(): Argument #2 is not an array in /home/flexol5/public_html/wp-content/plugins/bbpress/includes/common/functions.php on line 1419
I don’t know what i did wrong or maybe the coding structure of bbpress as changed. I would like someone to help with a way to arrange a specific forum topic in ascending order.
Thanks
I found this plugin that takes all the usernames that are commented on a post and makes the link go to a different page. I’m trying to make it call the bbp_user_profile_url. This way, when the link of a user is clicked on from the comments it goes to the users bbpress profile.
My PHP is a little rusty, so I deliberately coded this wrong hoping someone can see what I’m trying to accomplish. My code modifications are at the very end.