I am looking at the shortcode used for the client testimonial (not the carousel). I want to know if i can animate the testimonials so instead of clicking on a logo to change the text, the text will just auto-rotote. So I am seeing the following:
I do not not want to be that guy coming to you for every little question but I do not see clues to this in the Theme Appearance console or the documentation. Is there other documentation or a source to go to that might get me some more in depth info on the theme and the various section capabilities and customization options available?
Again you guys have been great, I just don;t want to clog the pipes with support tickets if I don\'t have to.
I am looking at the shortcode used for the client testimonial (not the carousel). I want to know if i can animate the testimonials so instead of clicking on a logo to change the text, the text will just auto-rotote. So I am seeing the following:
[client_testimonials][client_testimonial name=\"Joe Smith\" company=\"Acme\" ]Some text[/client_testimonial] [client_testimonials][client_testimonial name=\"Bill Smith\" company=\"Acme2\" ]Some more text[/client_testimonial]
1. How can I control on/off animation?
2. How do i control duration?
I do not not want to be that guy coming to you for every little question but I do not see clues to this in the Theme Appearance console or the documentation. Is there other documentation or a source to go to that might get me some more in depth info on the theme and the various section capabilities and customization options available?
Again you guys have been great, I just don;t want to clog the pipes with support tickets if I don\'t have to.
Hi,
the logos and the testimonials slider are linked.
the clients slider is initialized in /js/scripts.js, line 139 to 142:
jQuery(\'.clients-slider\').bxSlider({
pagerCustom: \'#bx-pager\',
controls:false,
});
as you can see pagerCustom is the div holding the logos
so, theoretically you could change this to:
jQuery(\'.clients-slider\').bxSlider({
controls: true,
pager: false,
auto:true,
pause: 3000,
});
and hide the bx-pager in custom css:
#bx-pager{
display: none
}
or
jQuery(\'.clients-slider\').bxSlider({
pagerCustom: \'#bx-pager\',
controls:false,
auto:true,
pause: 3000,
});
to keep the logos as well (not tested though)
thanks
Thank you.
Clapat Support
https://www.clapat.com/
Review Envato Item Support Policy