How to change only one javascript function in wordpress child theme?

Question

I would like to change just one JavaScript function in the child theme but without having to insert all the JavaScript code of the parent theme.

How do I change only this function (I need change only count = Math.ceil(width / size) line):

function slickAutoResponsive(slider, max, size) {

  if (!max){
    max = 5;
  }
  if (!size){
    size = 380;
  }

  var width = slider.width(),
    count = Math.ceil(width / size);

  if (count < 1) count = 1;
  if (count > max) count = max;

  return count;
}
0
, Fg_ 3 years 2020-05-31T14:10:35-05:00 0 Answers 88 views 0

Leave an answer

Browse
Browse