Hi!
Is it possible to change the sequence of the NAME and the QUOTE of testimonials? I would like to display the NAME like a header/title and then underneath the quote/text.
like:
THE MAN
Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus.
——
THANK YOU!
Kind Regards,
Linda
Hey capuchin!
Thank you for using our theme.
Add the following code in functions.php at the end:
function add_custom_script(){
?>
<script>
jQuery(function() {
jQuery(".avia-testimonial-meta").each(function(){
jQuery(this).closest('.avia-testimonial_inner').find(".avia-testimonial-content").prepend(jQuery(this));
});
});
</script>
<?php
}
add_action('wp_footer', 'add_custom_script');
You will porbably need some CSS adjustments.
Regards,
Günter