Siropu
Well-known member
You can by creating a HTML widget and calling the widgets directly:
	
	
	
		
First, unset the positions in each widget.
Replace
				
			
		HTML:
	
	<h2 class="block-tabHeader tabs tabs--standalone hScroller" data-xf-init="tabs h-scroller" role="tablist">
    <span class="hScroller-scroll">
        <a class="tabs-tab is-active" role="tab" aria-controls="srptrct1">Tab 1</a>
        <a class="tabs-tab" role="tab" aria-controls="srptrct2">Tab 2</a>
    </span>
</h2>
<ul class="tabPanes">
    <li class="is-active" role="tabpanel" id="srptrct1">
          <xf:widget key="siropu_recent_posts_1" />
     </li>
     <li role="tabpanel" id="srptrct2">
          <xf:widget key="siropu_recent_posts_2" />
     </li>
</ul>
	Replace
siropu_recent_posts_1 and siropu_recent_posts_2 with the actual key of each widget.