Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1283556

    Is there a way to have the name and title of the person (avia-testimonial-meta-mini) appear on top of the text (avia-testimonial-markup-entry-content) in the Testimonial Grid? That would put the name next to the image.

    Thank you.

    #1284043

    Hey rmatus,

    I’m not sure I completely understand your intentions. Could you post a link to where we can see the element in question, and try to explain a bit further please? If you have a screenshot or mockup highlighting what you would like to achieve, then please share that with us as well.

    Best regards,
    Rikard

    #1284192

    Of course, I include links in the private content section.

    Thank you so much.

    #1286114

    Hi,
    Sorry for the very late reply and thanks for the link and screenshots. Try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_testimonial_meta_script() { ?>
        <script>
    (function($){
      $( '.avia-testimonial_inner' ).each(function() {
      $( this ).find( '.avia-testimonial-meta-mini' ).css({ 'padding-bottom': '10px'}).insertBefore( $(this).find('.avia-testimonial-content'));
      });
    })(jQuery);
    </script>
        <?php
    }
    add_action('wp_footer', 'custom_testimonial_meta_script');

    Best regards,
    Mike

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.