Home › Forums › All Other Themes › Healing Touch – Testimonials
- This topic has 6 replies, 2 voices, and was last updated 8 years, 6 months ago by Sonl Sinha.
-
AuthorPosts
-
May 3, 2016 at 5:10 pm #32532
Hi,
How do I change the rotation speed of the testimonials in the Healing Touch theme? Is it possible to show more than one at a time?
Thanks!
May 4, 2016 at 5:43 am #32569Hi Toby,
Kindly go to js/custom.js and find this code
transitionSpeed : 600,
Change the transition speed from there.
Regards,
DaveMay 4, 2016 at 10:19 am #32599Please be more specific. Do you mean in wp-includes>js> ? I only see multiple customize-_____.js files but not specifically custom.js
May 4, 2016 at 12:29 pm #32609Hi Toby,
Kindly go to wp-content/themes/SKT-healing-touch/js/custom.js
Regards,
DaveMay 4, 2016 at 12:53 pm #32612Hi,
Thank you for the quick reply but I still am finding this difficult. Below is the code from my custom.js file and I do not see anything about transitionspeedjQuery(window).load(function() {
if(jQuery(‘#slider’) > 0) {
jQuery(‘.nivoSlider’).nivoSlider({
effect:’fade’,
});
} else {
jQuery(‘#slider’).nivoSlider({
effect:’fade’,
});
}
});// navigation script for responsive
var healing_touch_bowser_width = jQuery(window).width();
jQuery(document).ready(function() {
jQuery(“.site-nav li a”).each(function() {
if (jQuery(this).next().length > 0) {
jQuery(this).addClass(“parent”);
};
})
jQuery(“.mobile_nav a”).click(function(e) {
e.preventDefault();
jQuery(this).toggleClass(“active”);
jQuery(“.site-nav”).slideToggle(‘fast’);
});
adjustMenu();
})
// navigation orientation resize callbak
jQuery(window).bind(‘resize orientationchange’, function() {
ww = jQuery(window).width();
adjustMenu();
});
// navigation function for responsive
var adjustMenu = function() {
if (healing_touch_bowser_width < 989) {
jQuery(“.mobile_nav a”).css(“display”, “block”);
if (!jQuery(“.mobile_nav a”).hasClass(“active”)) {
jQuery(“.site-nav”).hide();
} else {
jQuery(“.site-nav”).show();
}
jQuery(“.site-nav li”).unbind(‘mouseenter mouseleave’);
} else {
jQuery(“.mobile_nav a”).css(“display”, “none”);
jQuery(“.site-nav”).show();
jQuery(“.site-nav li”).removeClass(“hover”);
jQuery(“.site-nav li a”).unbind(‘click’);
jQuery(“.site-nav li”).unbind(‘mouseenter mouseleave’).bind(‘mouseenter mouseleave’, function() {
jQuery(this).toggleClass(‘hover’);
});
}
}May 4, 2016 at 1:12 pm #32616Hi Toby,
Kindly send us your URL of the site and WordPress admin details via sktthemes.net/contact
Please mention this forum URL while replying so that we understand what needs to be done.
Regards,
BradMay 4, 2016 at 1:34 pm #32621Hi Toby,
Kindly check the file directory here: /wp-content/themes/skt-healing-touch-pro/js/custom.js
Here is the code of custom.js
jQuery(document).ready( function(){ var ww = jQuery(window).width(); if( ww > 479 && ww < 719){ jQuery('.client').removeClass('last'); } // skill bar script jQuery('.skillbar').each(function(){ jQuery(this).find('.skillbar-bar').animate({ width:jQuery(this).attr('data-percent') },6000); }); jQuery("area[rel^='prettyPhoto']").prettyPhoto(); jQuery(".gallery:first a[rel^='prettyPhoto']").prettyPhoto({animation_speed:'normal',theme:'light_square',slideshow:3000, autoplay_slideshow: false}); jQuery(".gallery:gt(0) a[rel^='prettyPhoto']").prettyPhoto({animation_speed:'fast',slideshow:10000, hideflash: true}); jQuery("#custom_content a[rel^='prettyPhoto']:first").prettyPhoto({ custom_markup: '<div id="map_canvas" style="width:260px; height:265px"></div>', changepicturecallback: function(){ initialize(); } }); jQuery("#custom_content a[rel^='prettyPhoto']:last").prettyPhoto({ custom_markup: '<div id="bsap_1259344" class="bsarocks bsap_d49a0984d0f377271ccbf01a33f2b6d6"></div><div id="bsap_1237859" class="bsarocks bsap_d49a0984d0f377271ccbf01a33f2b6d6" style="height:260px"></div><div id="bsap_1251710" class="bsarocks bsap_d49a0984d0f377271ccbf01a33f2b6d6"></div>', changepicturecallback: function(){ _bsap.exec(); } }); // accordion jQuery('.accordion-box .acc-content').hide(); jQuery('.accordion-box h2:first').addClass('active').next().show(); jQuery('.accordion-box h2').click(function(){ if( jQuery(this).next().is(':hidden') ) { jQuery('.accordion-box h2').removeClass('active').next().slideUp(); jQuery(this).toggleClass('active').next().slideDown(); } return false; // Prevent the browser jump to the link anchor }); // Tabs jQuery('ul.tabs > br').remove(); jQuery('.tabs-wrapper').append(jQuery('.tabs li div')); jQuery('.tabs li:first a').addClass('defaulttab selected'); jQuery('.tabs a').click(function(){ switch_tabs(jQuery(this)); }); switch_tabs(jQuery('.defaulttab')); function switch_tabs(obj) { jQuery('.tab-content').hide(); jQuery('.tabs a').removeClass("selected"); var id = obj.attr("rel"); jQuery('#'+id).show(); obj.addClass("selected"); } // Content Toggle jQuery(".slide_toggle_content").hide(); jQuery("h3.slide_toggle").toggle(function(){ jQuery(this).addClass("clicked"); }, function () { jQuery(this).removeClass("clicked"); }); jQuery("h3.slide_toggle").click(function(){ jQuery(this).next(".slide_toggle_content").slideToggle(); }); }); jQuery(document).ready(function() { jQuery('#testimonials .quotes').quovolver({ children : 'li', transitionSpeed : 600, autoPlay : true, autoPlaySpeed:6000, equalHeight : false, navPosition : 'above', navPrev : false, navNext : false, navNum : false, navText : false, navTextContent : 'Quote @a of @b' }); }); // NAVIGATION CALLBACK var ww = jQuery(window).width(); jQuery(document).ready(function() { jQuery(".nav li a").each(function() { if (jQuery(this).next().length > 0) { jQuery(this).addClass("parent"); }; }) jQuery(".toggleMenu").click(function(e) { e.preventDefault(); jQuery(this).toggleClass("active"); jQuery(".nav").slideToggle('fast'); }); adjustMenu(); }) // navigation orientation resize callbak jQuery(window).bind('resize orientationchange', function() { ww = jQuery(window).width(); adjustMenu(); }); var adjustMenu = function() { if (ww < 1169) { jQuery(".toggleMenu").css("display", "block"); if (!jQuery(".toggleMenu").hasClass("active")) { jQuery(".nav").hide(); } else { jQuery(".nav").show(); } jQuery(".nav li").unbind('mouseenter mouseleave'); } else { jQuery(".toggleMenu").css("display", "none"); jQuery(".nav").show(); jQuery(".nav li").removeClass("hover"); jQuery(".nav li a").unbind('click'); jQuery(".nav li").unbind('mouseenter mouseleave').bind('mouseenter mouseleave', function() { jQuery(this).toggleClass('hover'); }); } } jQuery(window).scroll(function() { jQuery('.services-wrap').each(function(){ var imagePos = jQuery(this).offset().top; var topOfWindow = jQuery(window).scrollTop(); if (imagePos < topOfWindow+400) { jQuery(this).addClass("fadeIn"); } }); jQuery('.welcome-wrap').each(function(){ var imagePos = jQuery(this).offset().top; var topOfWindow = jQuery(window).scrollTop(); if (imagePos < topOfWindow+400) { jQuery(this).addClass("fadeIn"); } }); }); jQuery(document).ready(function() { jQuery('.srchicon').click(function() { jQuery('.searchtop').toggle(); jQuery('.topsocial').toggle(); }); }); jQuery(document).ready(function() { jQuery('h2.section_title, .cols-4 h5, h1.entry-title, h2.heading, h3.widget-title').each(function(index, element) { var heading = jQuery(element); var word_array, last_word, first_part; word_array = heading.html().split(/\s+/); // split on spaces last_word = word_array.pop(); // pop the last word first_part = word_array.join(' '); // rejoin the first words together heading.html([first_part, ' <span>', last_word, '</span>'].join('')); }); });
Regards,
Brad -
AuthorPosts
- You must be logged in to reply to this topic.