Admin Approval Email for New Topic
-
I want to implement a functionality in bbpress 2.0.2 that an admin ll get an approval email when a registered user adds topic or give reply on any topic. sothat if admin approves the topic and give reply on any topic then it ll show on website otherwise not.
Can you please suggest me.
-
Hello Rashid,
Thanks a lot.
I need a functionality same as comment in wordpress.
In wordpress when we comment on any post, an email goes to admin for approval of the comment. if admin approves then only the comment ll show on site otherwise no person can see that comment.i have to apply same functionality for topics.
when a registered user ll add a topic from frontend of website then an email ll go to admin, if admin approves the topic then only topic ll show on website.I think the two of you need to compare your settings, installed plugins etc, you both have what the other is looking for and with some luck you will both solve each others problems.
@apena916 see https://bbpress.org/forums/topic/admin-approval-email-for-new-topic/
@shilpi18th see https://bbpress.org/forums/topic/need-users-to-be-able-to-posts-without-posts-being-approved/Can anyone suggest me how should I implement this functionality. Its very urgent.
Will this do what you want it to?
Thanks a lot………
yes , i have used one plugin here : http://www.studyingon.com
plugin name is “Contact Form 7” you can get is from website contactform7.com
can i replace my forum https://www.seodio.com/ with bbpress ? if so how do i transfer all my data from php xenforo to bbpres?
my forum : https://seodio.com/forum/
have wpforo on my forum https://gezenmibilir.com/forum/ am able to replace how do transfer the data ?
Hi
The wpforo creator says there is no tool for this :
https://wordpress.org/support/topic/migrating-from-wpforo-to-bbpress-3-3/
hello guys i install bbpress style pack ,
and i activate moderation
add_action(‘transition_post_status’, ‘send_email_on_post_approval’, 10, 3);
function send_email_on_post_approval($new_status, $old_status, $post) {
if ($old_status === ‘pending’ && $new_status === ‘publish’) {if ($post->post_type === ‘reply’) {
// Dclenche les notifications pour une rponse
do_action(‘bbp_new_reply’, $post->ID, $post->post_parent, $post->post_parent, $post->post_author);} elseif ($post->post_type === ‘topic’) {
// Dclenche les notifications pour un sujet
do_action(‘bbp_new_topic’, $post->ID, $post->post_parent, $post->post_author);
}
}
}why i dont receive the email from the post type topic ? (replies work normally )
thanks
- You must be logged in to reply to this topic.