Fusion Builder Custom Element
January 28, 2025 ยท AI Conversations
User
<script>
jQuery(document).ready(function($) {
$('.owl-carousel').each(function() {
var $this = $(this);
$this.owlCarousel({
items: parseInt($this.data('items')),
autoplay: $this.data('autoplay') === 'true',
autoplayTimeout: parseInt($this.data('autoplay-speed')),
loop: true,
margin: 10,
nav: true,
});
});
});
</script>
Assistant
If the custom element is not showing in Fusion Builder, it could be due to several reasons. Here