Why aren't my blog images showing up?

Hi All,

my blog images don’t show today, can anyone help me with that? Thanks a lot!

https://horaciobikes.com.au/

pw:0713

Hi @lulu57

This is Victor from PageFly - Shopify Page Builder App

Please add this code to your theme.liquid above the to get this solved

Step 1: Online Stores > Themes > More Actions > Edit code

Step 2: click on theme.liquid and paste the code above the


Hope this can help you solve the issue

Best regards,

Victor | PageFly

1 Like

Thanks again Victor! :blush:

images are showing

Thank you Victor.

I would also like to add something in case it might be useful to anyone.

Because in my particular case, this solution was not enough to solve the problem.

I solved it the following way:

Step 1: In your current theme, edit sections/article-template.liquid which you can find the way Victor described.

Step 2: If there isn’t one, add a code to load the image, for example:

{% if article.image %}
        
          
        

        {% endif %}

Feel free to edit the image size, which was set to 1024x1024 in this example.

Where you should copy paste that code for example can be right above the following:


          {{ article.content }}
        

if you want your image to load before your article text content.

Make sure the indentation is the same for the code loading the image as for the code loading the article content (shown above).

Best Regards,

Geoffrey