1. Go to Layout -> open the "Instagram" widget from the "INSTAGRAM" section.
3. Replace add-your-username with your own username.
Add your link and username
To add your Instagram link and username like in the demo ("follow @avasdiary" below the Instagram heading), replace LINK and @username in the code.If you accidentally delete the code or the widget, here it is (add it to a HTML/JavaScript widget in the INSTAGRAM section):
<script>
(function($){
$(window).on('load', function(){
$.instagramFeed({
'username': 'add-your-username',
'container': "#instagram-feed",
'display_profile': false,
'display_biography': false,
'display_gallery': true,
'display_igtv': false,
'callback': null,
'styling': true,
'items': 5,
'items_per_row': 5,
'margin': 1
});
});
})(jQuery);
</script>
<div id="instafeed_wrap">
<div id="instafeed_link">follow <a href="LINK" target="_blank">@username</a></div>
<div id="instafeed__wrap">
<div id="instagram-feed"></div>
<div style="clear: both;"></div>
</div>
</div>