Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #305761

    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

    #306170

    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

    • This reply was modified 10 years, 3 months ago by Günter.
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.