Okay
  Public Ticket #614904
Salient upgrade, testimonial slider no longer allowing images?
Closed

Comments

  • Mick started the conversation

    I had to re-purchase the theme since the original developer on the site I'm maintaining didn't send us the info to get new versions. I got it updated, and everything seems to be working great except for a couple of things. One is the way they had used the testimonial slider. In the original, they had put an image path in and it would pull up an image for each of the testimonials instead of text. Now it is just putting the image path in quotes as if that is the testimonial text.

    NOTE: I had submitted a private ticket on this 10 hrs ago but haven't heard back yet - hoping for some help on this. Is there a quick way to bring back the functionality that this widget had before?

  • Mick replied

    Just in case someone experiences this and needs a quick fix (I\'m waiting to hear back from support to see if functionality changed since 5.0), here is a quick script snippet you can use to fix it:

    jQuery(\".testimonial_slider blockquote p\").each(function(){
    jQuery(this).html(\'<img src=\' + jQuery(this)[0].innerText + \'/>\')
    });