Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Sign In with Facebook Sign In with Google Sign In with OpenID Sign In with Twitter

In this Discussion

Auto Refreshing for Recent Discussions Widget

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

Answers

  • 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;
    
Sign In or Register to comment.