In version 1.0 there is a problem with some modules, such as tabs not functioning properly on single post pages when using the Divi builder, such as Tabs.


To rectify this issue please open the custom-script.js file located inside the child theme js/custom-script.js and replace the entire contents with the code below.


(function ($) {
$(document).ready(function () {
$(document).bind(‘ready ajaxComplete’, function () {
//Move title below meta on posts
$(“.et_pb_post”).each(function () {
$(“.entry-title”, this).insertAfter($(“.post-meta”, this));
});
});
});
})(jQuery);
(function ($) {
$(document).ready(function () {
//Move the title and meta below the featured image on single posts
$(“.single .et_post_meta_wrapper”).each(function () {
$(“.entry-title, .post-meta”, this).insertAfter($(“img”, this));
});
//Remove pipes, commas and ‘by’ from the meta on archive pages
$(“.archive .post-meta, .search .post-meta”).html(function () {
return $(this).html().replace(/\|/g, ”).replace(‘by’, ”).replace(/,/g, ”);
});
//Remove ellipsis from the excerpt on archive pages
$(“#left-area .et_pb_post”).html(function () {
return $(this).html().replace(‘…’, ”);
});
});
})(jQuery);