LPH submitted a new resource:
How to Render a Widget Externally - It only takes one line to pull a widget
Read more about this 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 usingtemplater()
andrenderWidget
.
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...