Okay
  Public Ticket #2701010
Slider
Closed

Comments

  • blenkhn started the conversation

    Is your plugin compatible with any sliders?  or do you have a slider built in?

  •   blenkhn replied privately
  •  771
    Zhivko replied

    Hi,

    Sorry for the late reply.

    You can add slider images by going to Add / Edit Event -> Introduction tab -> Images -> "Add Images".

    It is possible to add your own slider via shortocode in the event's description but you will have to set the events to open in "Single Page" from Generla settings otherwise the shortcode may not render correctly because the event's description is obtained via ajax call.



    Stachethemes Developer

  • blenkhn replied

    I was referring to being able to use a slider to show the events, not a image slider inside the event.  However speaking of such, is there elementor support for the event?  So that I can use elementor to make the event description look like like gold?

  •  771
    Zhivko replied

    I see. No, there's no particular slider that can display events right away but if you're familiar with php you could extract the events data and insert it in a slider.

    Example:

    $events = \ Stachethemes \ Stec \ Events::get_events_between('2021-03-01', '2021-03-31', 'UTC');
        
    foreach($events as $event) {
          
        echo '<pre>';
        print_r($event->get_post_data());
        echo '</pre>';
            
    }

    Currently only the event submission form and the event's single page support elementor.


    Stachethemes Developer