Create A Bootstrap 4 Carousel Slider With ACF Image Repeater

Acf Bootstrap Carousel Slider

…Carousel Only https://gist.github.com/neilgee/d4a4c1c3de098cc34cad34208f6158e7#file-carousel-php Carousel with Nav https://gist.github.com/neilgee/d4a4c1c3de098cc34cad34208f6158e7#file-carousel-nav-php Previous Next Carousel with Nav + Indicators. https://gist.github.com/neilgee/d4a4c1c3de098cc34cad34208f6158e7#file-carouse-nav-indicators-php Previous Next Carousel with Nav and Indicators + Captions https://gist.github.com/neilgee/d4a4c1c3de098cc34cad34208f6158e7#file-carousel-caption-php Cool Slider 1 Cool Slider…

Read More

Responsively Removing Width and Height Attributes on Images and wp-caption on WordPress

…header.php of your theme. <script src=”http://code.jquery.com/jquery-latest.js”></script> <script type=”text/javascript”> jQuery.noConflict(); jQuery(document).ready(function($){ $(‘img’).each(function(){ $(this).removeAttr(‘width’) $(this).removeAttr(‘height’); }); }); </script> This can be used to target specific images instead of all images by using…

Read More