XF 2.1 Widgets below forum node categories?

frm

Well-known member
I'd like to add a widget between 2 forum node categories (or more). Is this possible with an add-on or would I need to place the physical widget in a template? If so, where would I look?
 
I'm not exactly sure where you would need to place the widget but you can use the widget key code like this:

Code:
<xf:widget key="widget_key" />

You would then need to go to the template PAGE_CONTAINER and find where the code for the nodes are placed and place that code (replace widget_key with your set widget key) for your widget and then you will be good.

I've done this for my welcome notice widget to get it to display above the sidebar. It's the same concept with the widget key except you'd need to find the where the code for the nodes are. Hope that helped.
 
Top Bottom