Notifications
Clear all

wpForo 1.x.x [Solved] Set topic to unapproved from code

4 Posts
2 Users
0 Likes
781 Views
Posts: 51
Topic starter
(@basatexcellent)
Trusted Member
Joined: 6 years ago

Is there a code snippet to set a topic (topicid is known) to unapproved from code?

3 Replies
Sofy
Posts: 4053
 Sofy
(@sofy)
Famed Member
Joined: 6 years ago

Hi @basatexcellent,

I'll ask the plugin developers and let you know asap. 

2 Replies
Sofy
 Sofy
(@sofy)
Joined: 6 years ago

Famed Member
Posts: 4053

@basatexcellent,

The codes you can use are provided below: 

WPF()->moderation->post_unapprove( $postid );

WPF()->moderation->post_approve( $postid );

Please pay attention that the functions are required the postID but not topicID.

(@basatexcellent)
Joined: 6 years ago

Trusted Member
Posts: 51

Thanks, that works !