• Resolved ninjac4

    (@ninjac4)


    Hey!

    Is it possible to add a hook which auto subscribes a user to recieve email whenever one of the posts they created gets a reply?

    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Asgaros

    (@asgaros)

    Hello @ninjac4

    There is a hook called asgarosforum_after_add_thread_submit which is fired when a new topic is created. You can use it like this to add an auto-subscribe functionality:

    function auto_subscribe($postID, $topicID) {
    	AsgarosForumNotifications::subscribeTopic();
    }
    add_action('asgarosforum_after_add_thread_submit', 'auto_subscribe');
    • This reply was modified 7 years, 1 month ago by Asgaros.
    Thread Starter ninjac4

    (@ninjac4)

    Many thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Auto subscribe new post?’ is closed to new replies.