You can add the following jQuery in “Divi Theme Options / Integration tab”:
<script>
jQuery(function() {
jQuery(“.owl-item”).click(function() {
window.location = jQuery(this).find(“a”).attr(“href”);
return false;
});
});
</script>
For cursor pointer use the following CSS:
.owl-item {
cursor:pointer;
}