Skip to main content

Feed Doesn’t Load—Juicer Feed Display Issues

Written by Mario T.
Updated yesterday

Basic Checks

  1. Verify correct embed code placement

  2. Check page source code for Juicer code presence

  3. Review JavaScript console for error messages

Finding Your Embed Code

  • Access Juicer dashboard

  • Look for "Embed" button in the top-left corner of your feed dashboard

  • For WordPress users: You can install and activate the WordPress plugin, although this is an optional step

Local Development Solutions

When developing locally, Juicer may not load properly. Use one of these solutions:

  1. Run a local server (example setup)

  2. Modify embed code to use explicit HTTP: from

    <script src="//assets.juicer.io/embed.js" type="text/javascript"></script><link href="//assets.juicer.io/embed.css" media="all" rel="stylesheet" type="text/css" /><ul class="juicer-feed" data-feed-id="YOUR_FEED_NAME"><h1 class="referral"><a href="http://www.juicer.io">Powered by Juicer</a></h1></ul>

    to:

    <script src="<http://assets.juicer.io/embed.js>" type="text/javascript"></script><link href="<http://assets.juicer.io/embed.css>" media="all" rel="stylesheet" type="text/css" /><ul class="juicer-feed" data-feed-id="YOUR_FEED_NAME"><h1 class="referral"><a href="<http://www.juicer.io>">Powered by Juicer</a></h1></ul>

    ⚠️ Note: This approach may cause issues with HTTPS (SSL) sites after deployment.

Single Page Application Support

For single page applications (including Magento/Adobe Commerce and SharePoint), where document.ready might not fire:

  1. Replace standard JavaScript with the AMD version:

    <script src="//assets.juicer.io/embed-amd.js" type="text/javascript"></script>
  2. Manually control feed visibility:

    • Show feed: Juicer.initialize()

    • Hide feed: Juicer.remove()

Last Resort: iframe Implementation

If other solutions fail:

  1. Access Juicer dashboard, then the feed you’re embedding

  2. Click on "Embed" button in the top left corner

  3. Copy iframe version of embed code

Did this answer your question?