Hi @Juan_Garza,
It looks like you have to create feed slider with specific categories/topics wise.
Implement slider code on feed its depends on which slider plugin used.
We are using owl carousel plugin where required slider in our HubSpot Projects. I believe in everyone uses only one Slider plugin in all slider requirement because developer use with HTML Structure of that plugin and no need to an investigation in every time do something different.
As per my point of I don’t know which slider plugin you will use.
I going to give you Blog Feed with Owl Slider
follow this reference link steps - demo
now compare your blog listing code structure with this code.
<div class="post-listing owl-carousel owl-theme">
<div class="post-item item">
{{ some HubL code }}
</div>
</div>
just add classes in your page listing code
in your case you have to create multiple sliders with diffrent diffrent class name like
<div class="post-listing owl-carousel01 owl-theme">
<div class="post-item item">
{{ some HubL code }}
</div>
</div>
<div class="post-listing owl-carousel02 owl-theme">
<div class="post-item item">
{{ some HubL code }}
</div>
</div>
let know if this is not working than kindly send us your test page or like a link so I can tell a perfect solution for this problem.
Did my post help answer your query? Help the Community by marking it as a solution.
Team TRooInbound