Hello!
First of all I want to clarify that the notifications by email if they arrive if a response is made in the subject from the frontend, in that there is no problem.
I feed the forum with external information, the updates of new and old topics are published daily. This I do by means of an import code. When users subscribe to a topic and receive new answers, email does not arrive.
I suspect that is the replic’s import code.
At the beginning of the code, I identified the id of the theme to link the replic, then updated the data.
$old_topic_id = get_post_meta( $post_id, '_bbp_topic_id', true );
$post = get_posts( array(
'post_type' => 'topic',
'meta_key' => '_old_topic_id',
'meta_value' => $old_topic_id
) );
if ( $post ) {
$new_topic_id = $post[0]->ID;
$args = array(
'ID' => $post_id,
'post_parent' => $new_topic_id
);
wp_update_post( $args );
update_post_meta( $post_id, '_bbp_topic_id', $new_topic_id );
update_post_meta( $post_id, '_edit_last', 1 );
}
The import of topic and replic is a success, except for the detail that does not motivate users subscribed to forum and topic.
Regards!
Hello!
So far I can only see topics on how to disable RSS Feed but I can’t seem to find any answers on how to add a subscription button for forums/topics/replies.
Is there any way somebody help me on how I can add in a subscription button?
Thanks!
WP Version: 4.9.1
bbPress: 5.4
Using Salient Theme
Hello!
So far I can only see topics on how to disable RSS Feed but I can’t seem to find any answers on how to add a subscription button for forums/topics/replies.
Is there any way somebody help me on how I can add in a subscription button?
Thanks!
I want to add a taxonomy (which I’ve already created) to replies which are in all forums except one. I’m struggling to find the exact functions that I need to use for this though, e.g. to check the forum name (I don’t want to rely on the forum ID in case that is changed in a reinstall) and to set the taxonomy. I can’t find a list of all functions in the documentation.
I’m going to be creating a child theme and I’m pretty sure that it’s bbp_insert_reply() that I need to modify. I’ve found that ok. But it’s what functions to call to do the simple test and set that I want to do that I’m struggling with, even searching the function files of other parts of bbPress. So it seems like a simple case of testing the forum name and then setting the taxonomy if the test passes, but I am unsure of the two functions to use.
Can anyone point me in the right direction, please? Thanks in advance.
When I visit a fresh bbPres installation Opera seems to hide the whole text “Register or login:”. The text isn’t visible because it seems to be outside the screen.
I made a screenshot where you can see the problem.
Hello!
I notice Bbpress doesn’t have a feature for RSS feed implementation? So far I can only see topics on how to disable RSS Feed but I can’t seem to find any answers on how to add a subscription button for forums/topics/replies.
Is there any way somebody help me on how I can add in a subscription button?
Thanks!
Is there anyway to use a form with bbpress. I have a unique situation were the owner wants to use groups and forums, but also use a form within a forum so participants answer questions in a formatted way. Is this possible? has anyone ever done this?
I have several special interest groups by category as standard wp posts. I want to migrate them from one site as blog posts to another as bbPress forum topics. What would be the best way to do this?
I am having trouble getting the topic page template to default to the same page format as my forum page. I created a custom template “bbp-sidebars” that presents my forum page with a sidebar for forum page views and topic views. The forum picks up the custom template, but the topics page ignores it and defaults to the blog view template. So far I downloaded bbp Style Pack, bbp shortcodes, bbP Tookkit, Weaver for bbPress, and What the File to see if there was a setting to accomplish my goal. I also read multiple articles on custom templates, but none address the topic layout. Also, after a new topic or topic response is posted, I can manually go in and set the page settings to have it display the way I want. While my site is growing I can probably do this, but after a certain point it will be too hard to keep up.
I am using WP 4.9.4, ForeFront theme Version 1.04 as a subtheme under GeneratePress V 2.02
My Website is https://defensecareersHQ.com PW is “VetsHelpingVets”
An example of my issue can be viewed here
https://www.defensecareershq.com/forums/topic/how-about-l-3-technologies/
Also, please note I manually set the all other topic pages to display correctly. Any advice is greatly appreciated.
Hi,
i want to configure bbPress on my own theme. I am looking for a list of functions like https://codex.wordpress.org/Function_Reference just for bbPress. Where can I find this?
Thank you!