Cherry Framework theme, JQuery is using HTTP not HTTPS

If the script is enqueued using wp_enqueue_script (as it “should” be) then you can modify the tag directly with a find and replace match to fix this using the script_loader_tag filter:

add_filter('script_loader_tag', 'custom_https_fix', 10, 2);
function custom_https_fix($tag, $handle) {
    $match="jquery.script.js"; // replace with actual script filename
    if (strstr($tag, $match)) {$tag = str_replace('http://', 'https://', $tag);}
    return $tag;
}