Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #746576

    How can I change the order display for the testimonial to be

    Name
    Subtitle
    Quote

    and not be

    Quote
    Name
    Subtitle

    Thanks

    #748347

    Hey iolotech!

    Thank you for using Enfold.

    Please add this script in the functions.php file:

    function ava_custom_script_mod(){
    ?>
    <script>
    (function($){
    	function a() {
    		$('.avia-testimonial').each(function() {
    			$(this).find('.avia-testimonial-content').insertAfter(this).find('.avia-testimonial-meta');
    		});
    	}
    
        a();
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'ava_custom_script_mod');
    

    Cheers!
    Ismael

    #786828

    Hey Ismael,

    I have another order ‘display’ problem.
    I managed to get the shortcode for displaying testimonials in the widget arial. Now I wonder why I can’t have them displayed on same place there. After 5 sec. the secound testimonial is shown up far below the first one. Is there a possibility to make them one by one fading in line. Perhaps it would be better to built a own section for the testimonials, but how is the shortcode to get HTML-data from a site …/testimonial to the widget arial. Any advice?

    Good:
    Good display of testimonial data
    Bad:
    Bad display of testomonial data
    Links to the screenshots I made:
    1.) http://www.bilder-upload.eu/show.php?file=d2595b-1493771299.png
    2.) http://www.bilder-upload.eu/show.php?file=e9ff09-1493771427.png
    Regards,
    John

    #787403

    Hi,

    Please convert to

    [av_testimonials style='slider' columns='2' grid_style='' interval='5' font_color='' custom_title='' custom_content='' admin_preview_bg='']
    [av_testimonial_single src='' name='John Doe' subtitle='Evil' link='http://' linktext='']bla bla[/av_testimonial_single][av_testimonials style='slider' columns='2' grid_style='' interval='10' font_color='' custom_title='' custom_content='' admin_preview_bg=''][av_testimonial_single src='' name='Jane Doe' subtitle='Evil' link='http://' linktext='']
    bla bla blub[/av_testimonial_single][/av_testimonials]

    let us know if it works properly

    Best regards,
    Basilis

    #787413

    Hey Basilis,
    thank you for your fast responding.
    I checked it double – same result. The second msg is coming up in the widget: clearfix widget_recent_entries arial.
    Best regards,
    John

    #788808

    Hi,

    Is the site live? We need to inspect it. Try to apply a minimum height to the testimonial row.

    section.avia-testimonial-row {
        min-height: 250px;
    }

    Best regards,
    Ismael

    #789082

    Hi Ismael,

    lot of things to do… Therefore, sorry for my late reply.
    The last piece of code helped to avoid the collision with the other widget.
    Thank you. At next I need the following:
    Testiminal 1 after 5 to 10 secs testimonial 2 after 5 to 10 secs testimonial 3 and so on.
    Not:
    Testimonial 1 after 5 to 10 secs
    ………………………………………….Testimonial 2
    Have a look in the private Content for further information and to be able to inspect, what you need to know.
    I am so grateful for your help and service.

    Best regards,
    John

    #789521

    Hi,

    The testimonial shortcode that was provided above are actually two testimonial elements, that’s why they’re stacking up. Please try this shortcode instead.

    [av_testimonials style='slider' columns='2' grid_style='' interval='5' font_color='' custom_title='' custom_content='' admin_preview_bg='']
    [av_testimonial_single src='' name='John Doe 1' subtitle='Evil' link='http://' linktext='']bla bla[/av_testimonial_single]
    [av_testimonial_single src='' name='John Doe 2' subtitle='Evil' link='http://' linktext='']bla bla[/av_testimonial_single]
    [av_testimonial_single src='' name='John Doe 3' subtitle='Evil' link='http://' linktext='']bla bla[/av_testimonial_single]
    [av_testimonial_single src='' name='John Doe 4' subtitle='Evil' link='http://' linktext='']bla bla[/av_testimonial_single]
    [av_testimonial_single src='' name='John Doe 5' subtitle='Evil' link='http://' linktext='']bla bla[/av_testimonial_single]
    [/av_testimonials]
    

    Best regards,
    Ismael

    #789541

    Hey Ismael,

    thanks for your reply.

    Now it shows some sort of testimonials at same time permanently:

    It even not displaying all information (t is not the correct symbol, but I can’t reproduce it):
    bla t t t t
    bla t t t t

    Copy it to the editor, I have:

    bla bla
    'John
    'Evil' – ''
    
    bla bla
    'John
    'Evil' – ''
    
    bla bla
    'John
    'Evil' – ''
    
    bla bla
    'John
    'Evil' – ''
    
    bla bla

    Another advice?

    Best regards,
    John

    #789985

    Hi,

    I’m sorry but I thought that you want to display the testimonials with 5 seconds interval. Did you remove the other testimonial shortcode? The new shortcode works fine on our installation.

    Best regards,
    Ismael

    #791699

    Hi Ismael,

    at first nothing happend. Meanwhile I had to work and a lot of other things
    to do.
    I can’t explain, but now all is working as it should to be.
    I increase the intervall to 10 sec. successful too.

    Thank you very much, Ismael!

    Best regards,
    John

    #792021

    Hi,

    Great! Glad that you figured it out. :)

    Best regards,
    Ismael

Viewing 12 posts - 1 through 12 (of 12 total)
  • The topic ‘Testimonials : order display’ is closed to new replies.