Published on July 15th, 2015 by gothweb
So I installed bbPress 2.5.8 and I got some new widgets.
The bbPress Login Widget has three items:
Title
Register URI
Lost Password URI
all these three things are blank.
Title can be anything, but I don’t know the URI for “register” or “lost password” so strangers can’t sign up to my forum.
I was able to create forums, but my main admin account is the only account that can post to these forums.
Please tell me how I set up registration. I assume I just need to plug in one or two URIs, but I can’t find any explanation of how to do that.
Published on July 15th, 2015 by peteincali2103
I have set up a forum at:
http://dev.sandiegoala.org/forum-2/
But when clicking to any of the topics etc. I get a 404 error
i.e http://dev.sandiegoala.org/forums/topic/topic-1-2/
I know that the theme is causing the 404 errors, because when i switch to another theme it fixes the issue. Does anyone have any ideas on what the theme might be doing here?
Published on July 15th, 2015 by Mikesan
Hi everyone, this is my first post here. How are all of you?
First of all, thanks in advance to reading me.
I’m posting because I have a task and I couldn’t found a solution for it.
I need to get the count of participants for forums in the forums loop.
In the forum loop I need to show something like this:
——————————–
Forum Title
2 Topics | 0 Participants
——————————–
The question is, is a function, filter or hook to get something like bbp_forum_participants_count() just like we have bbp_forum_topic_count()?
Thank you again, I will be waiting for a response here 🙂
Published on July 15th, 2015 by stickFinger
Hi all
After a lot of digging i´ve found that the only way to translate the Topic Status dropdown strings is via the “bbpress/includes/topics/functions.php”, around line 1963, we have:
function bbp_get_topic_statuses() {
return apply_filters( 'bbp_get_topic_statuses', array(
bbp_get_public_status_id() => _x( 'Aberto', 'Open the topic', 'bbpress' ),
bbp_get_closed_status_id() => _x( 'Fechado', 'Close the topic', 'bbpress' ),
bbp_get_spam_status_id() => _x( 'Spam', 'Spam the topic', 'bbpress' ),
bbp_get_trash_status_id() => _x( 'lixeira', 'Trash the topic', 'bbpress' ),
bbp_get_pending_status_id() => _x( 'Pendente', 'Mark topic as pending', 'bbpress' ),
i´ve also downloaded the last development version of pt_BR.po from https://translate.wordpress.org/projects/bbpress/dev but despite of strings being there they don´t get translated.
Opening the po with a text editor i´ve noticed the absense of the “X-Poedit-KeywordsList: ” which i guess should be something like that:
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
For now i´ll try to add the keywordlist by hand at the top of my pt_BR file. Hope that fixes te issues specially with the _x:1,2c keyword
What could be wrong with the glotpress generator?
Thanks
Published on July 15th, 2015 by SethTurin
Hello
I’d like to hack the converter for invision power board so that it transfers file attachments and avatars. I have the plugins installed for those capabilities. Where can I find the file/functions I need to modify?
Published on July 15th, 2015 by Celtic
Is there a ways to make the Forum/Forums visible but topics hidden to people who are not logged in?
Published on July 14th, 2015 by ghoush
I have searched and put code together and tested. Now whenever a new post is created in WordPress a new topic is created in a specific sub-forum on my bbPress. This is working great. It brings over the tags and everything.
The one problem I have is that the publish_post action fires every time a post is set to published. So if a post gets set back to draft or pending review, and then published again, another forum topic is created. There are problaby 2097324907629306 ways this can be solved. I am only coming up with some pretty stupid ones I think, so I was hoping someone might have a good idea here.
Here is the code for your functions.php:
function post_published_create_topic( $ID, $post ) {
$author = $post->post_author;
$name = get_the_author_meta( 'display_name', $author );
$title = $post->post_title;
$permalink = get_permalink( $ID );
$excerpt = $post->post_excerpt;
$subject = sprintf( '%s: %s', $name, $title );
$message = sprintf ('[b]%s[/b]' . "\n" . 'By %s' . "\n\n" . '[i]%s[/i]' . "\n\n" . 'View: %s' . "\n\n", $title, $name, $excerpt, $permalink );
$tags = wp_get_post_tags( $ID, array( 'fields' => 'names' ) );
$new_post = array(
'post_title' => $subject,
'post_content' => $message,
'post_parent' => 691,
'post_status' => 'publish',
'post_type' => 'topic'
);
$topic_meta = array(
'forum_id' => $new_post['post_parent']
);
$topic_id = bbp_insert_topic($new_post, $topic_meta);
$term_taxonomy_ids = wp_set_object_terms( $topic_id, $tags, 'topic-tag' );
}
add_action( 'publish_post', 'post_published_create_topic', 10, 2 );
Take that code and put it in your themes functions.php (hopefully you are using a child theme.) The 691 is my sub-forums ID, replace that with the right ID for yours. The format of the post and its content is done on the line that starts “$message = sprintf”.
Now I just need to get it to stop creating a new post every time the same post is published. So far my ideas have been something like matching up the topics title with a string comparison, but that seems a bit heavy. There should be a simpler way and I am just not seeing it right now.
Published on July 14th, 2015 by saintjaved
Please help: “After installing bbpress on intranet, wordpress dashboard or entire back end disappers” I did the manual install. I place the file in the plugins folder and when I press activate, the entire screen goes blank. Please help..
Published on July 14th, 2015 by drinkingsouls
Hi guys,
I’m not sure if this is possible or not. What I’m wanting to do is censor phone numbers and email addresses that may be posted. I am aware of the bad word filters but I’m looking for a plugin or hack that I can use to censor phone numbers and email addresses. Does anyone know of a way I can do this?
Thanks for any help.
Published on July 13th, 2015 by melanie bund
Hi Am not sure where my other 2 posts went, have posted twice with code, maybe that is the problem the code. My problem is that the replies to topics appear empty.
Am using wordpress 4.2, bbpress latest version as just updated to see if that might be the problem
ANY help wold be greatly apreciated
forum:
http://photohunters.org/forum/members-blog/
reply:
http://photohunters.org/topic/shutter-speed-cheat-sheet/#post-666
Thank you Melanie