Resource icon

Beginners How to Render a Widget Externally

LPH

Flight Director
Staff member
LPH submitted a new resource:

How to Render a Widget Externally - It only takes one line to pull a widget

Displaying a widget included with XenForo 2 is one line using templater() and renderWidget.

PHP:
echo \XF::app()->templater()->renderWidget('forum_overview_members_online');

The identifier is the Widget key found in the admin panel -> Appearances -> Widget. The 'forum_verview_members_online' is the widget key for the Members Online.

This is the result.

View attachment 52

Careful, though. The links are all relative.

Read more about this resource...
 
Top