Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Options

Auto Refreshing for Recent Discussions Widget

edited December 2011 in Vanilla 2.0 - 2.8

Is there a way to have Recent discussions widget to refresh itself every x seconds?
Right now the changes in the discussions don't reflect on the widget unless the user reloads the whole page.

Best Answer

  • Options
    ToddTodd Chief Product Officer Vanilla Staff
    Answer ✓

    That code is on the server side and you'd need to do the refresh from the client side. That would involve some significant work in the widget.

Answers

  • Options

    I think following lines from widgets.php controls the latest discussions.
    Is there a way to add an interval to this?

        // Retrieve the latest discussions from the Vanilla API
        $resturl = vf_combine_paths($resturl, '/');
        $data = json_decode(vf_rest($resturl));
        if (!is_object($data))
            return;
    
  • Options
    ToddTodd Chief Product Officer Vanilla Staff
    Answer ✓

    That code is on the server side and you'd need to do the refresh from the client side. That would involve some significant work in the widget.

Sign In or Register to comment.