Viewing 1 replies (of 1 total)
  • john_bryan

    (@john_bryan)

    I don’t know if you’re still trying to get this working, but, I figured it out. If you go into wp-content/plugins/iq-testimonials and edit iq-testimonials.php you will see this on line 286:

    if ((!empty($name)) && (!empty($location))) {$location = ', <span class="iq-testimonial-location">'.$location.'</span>';}

    change that line to this:

    if ((!empty($name)) && (!empty($location))) {$location = ' <span class="iq-testimonial-location">'.$location.'</span>';}

    note the lack of a comma before the span. Keep in mind that if you ever update this plugin, the comma will return and you will have to do it again (unless the author of the plugin takes this into account and wraps it in a conditional.

Viewing 1 replies (of 1 total)
  • The topic ‘Weird comma…how do I get rid of it?’ is closed to new replies.