We are sorry to say,
At the last modules update, we add tons of features as users can customize their tabs randomly with their desired design. We committed to users as our past module data also works properly with the latest version. Sometimes it given a conflict with a theme and we give support to our users as we can.
In this case, I can suggest you 2 ways.
1st is, kindly add the following custom js into your sites and avoid conflicts.
(function ($) {
setTimeout(function () {
$(".ctu-ulimate-style-1 .vc-tabs-li:first").addClass("active");
$(".ctu-ultimate-style-heading-1:first").addClass("active");
$(".ctu-ulitate-style-1-tabs:first").slideDown("slow");
$(".ctu-ulimate-style-1 .vc-tabs-li").click(function () {
if ($(this).hasClass("active")) {
return false;
} else {
$(".ctu-ulimate-style-1 .vc-tabs-li").removeClass("active");
$(this).toggleClass("active");
$(".ctu-ulitate-style-1-tabs").slideUp();
var activeTab = $(this).attr("ref");
$(activeTab).slideDown("slow");
}
});
$(".ctu-ultimate-style-heading-1").click(function () {
if ($(this).hasClass("active")) {
return false;
} else {
$(".ctu-ultimate-style-heading-1").removeClass("active");
$(this).toggleClass("active");
$(".ctu-ulitate-style-1-tabs").slideUp("slow");
var activeTab = $(this).attr("ref");
$(activeTab).slideDown("slow");
var headerheight = 120;
$("html, body").animate({
scrollTop: $(".ctu-ultimate-wrapper-1").offset().top - headerheight
}, 2000);
}
});
var contentliwidth = $(".ctu-ulimate-style-1 .vc-tabs-li").outerWidth();
var count = $(".ctu-ulimate-style-1 .vc-tabs-li").length;
var fullwidth = $(".ctu-ulimate-style-1").width();
var widthresult = contentliwidth * count;
if (fullwidth <= widthresult) {
var eachwidth = parseInt(fullwidth / count) + "px";
$(".ctu-ulimate-style-1 .vc-tabs-li").css("width", eachwidth);
};
}, 2000);
})(jQuery);
2nd is to Create another shortcode by using our latest modules. With the latest modules, you can customize and set responsive data like a developer. As my suggestion 2nd option will be far better from 1st where you need to copy current tabs and paste them into new tabs.
Hope you will understand and do well. please let us know if you need any help regarding our plugin.