Add first and last classes in appropriate places on homepage testimonials in superstore
// Add first and last classes in appropriate places on homepage testimonials in superstore
jQuery( '.home .testimonials-list div.quote' ).removeClass(' first ').removeClass(' last ');
jQuery( '.home .testimonials-list div.quote:nth-child(3n)').addClass( 'last' );
jQuery( '.home .testimonials-list div.quote:nth-child(3n + 1)').addClass( 'first' );