Editable swiper carousel

Kentico11 InVivo asked on February 28, 2019 09:12

Hello everyone, I am trying to create swiper-carousel to be editable. I have 8 photo, which contain following part: Images,URL link, Header Text and Intro text and I want to create that every images need to be editable.WHat I did so far is I create a page type and I create transformation

<div class="card rounded-0 border-0">
  {% if (string.IsNullOrEmpty(Photo)){ %}
  <img src="~/BS/assets/images/576x432.png" class="card-img-top" alt="260x195">
  {% }else{ %}
  {% GetImage(Photo, 128) %}
  {% } #%}
  <div class="card-body">
    <h5 class="card-title">{% Header  %}</h5>
    <p class="card-text">{% IntroText %}</p>
    <a href="{% Link %}" class="card-link text-info">Read More</a>
  </div>
</div>

Picture

Recent Answers


vasu yerramsetti answered on March 1, 2019 08:05

Editable swiper carousel is not available as Kentico out of the box. You can achieve this custom implementation using Traditional Javascript in transformation.

1 votesVote for this answer Mark as a Correct answer

   Please, sign in to be able to submit a new answer.