• Resolved Ouadie Lim

    (@ouadielim)


    Is there a way to not load the instagram feed at all when on mobile?
    I know I could hide the section using display: none;

    but it there a way to not load it at all because it slows down the site on mobile??

    Thanks a lot,

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Craig at Smash Balloon

    (@craig-at-smash-balloon)

    Hey ouadielim,

    Currently the plugin doesn’t have an easy way to prevent to code from running just for mobile. You could edit the JavaScript file to stop running code if the browser window is small. Something like this:

    if (jQuery(window).width() < 480) return;

    Hopefully that helps!

    Thread Starter Ouadie Lim

    (@ouadielim)

    Thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Only display the feed when on desktop’ is closed to new replies.