Issue: Slider blank with Slide Container Custom Hook

Issue
I’m trying to build a slider that shows 2 reviews per slide (Reviews CPT).
When I set Slide Container → Looper Provider = Custom (Hook) and Slide → Consumer = ON, the slide renders empty. If I turn Consumer OFF, static content shows. So it seems the Slide isn’t receiving items from the Container.

Steps to reproduce

  1. Slider (Stacked) → Slide Container → Slide.

  2. Slide Container: Provider = Custom (Hook: test_slides).

  3. Functions.php:

    add_filter('cs_looper_test_slides', function(){ return [1,2,3]; });
    
  4. Slide: Consumer ON, add text inside.
    → Expected: 3 slides with text.
    → Actual: nothing displays.

Questions

  1. How do I fix this & make it like loop through the Review Post Type, display TWO reviews in one slide. Eg: lets say I have 10 reviews, then it will show TWO reviews in a slide and dynamically show 5 slides.
  2. The Review is in the Section 6 and there are 2 versions of it. One is Slider - BACKUP ( this is static), the other (Slider - FOR SUPPORT) is the looper one for the support

Hello CStaff,

Thanks for writing in!

The filter will be cs_looper_custom_{{your_hook}} , where {{your_hook}} is the replaced with the hook you enter. For example, let’s say you entered the following code into your child theme’s functions.php file:

add_filter('cs_looper_custom_test_slides', function(){ return [1,2,3]; });

Kindly let us know how it goes.