• Resolved jamesmota

    (@jamesmota)


    In version 1.7.17, I did not find an option to insert links in the media / images / icons in testimonials. Only in titles / texts. Some version, pro or script alternative?

    Section:

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • hannah

    (@hannahritner)

    Hey,
    The Testimonials block has never had this option. If you want your images to be clickable I would suggest adding your testimonials as posts and adding them to a specific testimonial category. Then using the Post Grid/Carousel block to display them. Would something like that work for you?

    Best,
    Hannah

    Thread Starter jamesmota

    (@jamesmota)

    I appreciate your return and the plugin. It was an unusual request from a client, almost at the end of the project. Solved with this Rafael G. Francisco jquery script (add in the html block):

    // add common alias jquery
    $ = jQuery;

    const anchors = $(‘.kt-blocks-testimonial-carousel-item a.ek-link’);

    $.each(anchors, function (i, e) {
    let anchor = $(e);
    let text = anchor.text();
    let textContainer = anchor.parent();
    let newAnchor = anchor.clone().empty();
    let carouselItem = anchor.parents(‘.kt-blocks-testimonial-carousel-item’);

    carouselItem.wrap(newAnchor);
    textContainer.text(text);
    });

    • This reply was modified 4 years, 9 months ago by jamesmota.
    • This reply was modified 4 years, 9 months ago by jamesmota.
    hannah

    (@hannahritner)

    Glad you found a solution that works for you!

    Hannah

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Testimonials with links in medias’ is closed to new replies.