Need help with slideshow banner code editing on Venture 8.1?

Topic summary

A user is experiencing a visual bug with a slideshow banner on Shopify’s Venture 8.1 theme. The issue occurs when resizing the desktop browser window—after minimizing and maximizing, the slideshow displays incorrectly and requires a page refresh to fix.

Key Details:

  • The slideshow contains only one image, but the theme appears to attempt navigating to a second slide during window resize
  • Two screenshots demonstrate the before/after states of the bug
  • The user shared their slideshow.liquid code for troubleshooting

Questions Raised:

  • How to prevent the slideshow from trying to navigate to a non-existent second slide during resize
  • Whether it’s possible to add video content instead of images to this slideshow component

No solutions or responses have been provided yet. The discussion remains open and awaiting technical guidance on fixing the resize behavior and potential video integration.

Summarized with AI on November 18. AI used: claude-sonnet-4-5-20250929.

I’m fixing our company website currently using Venture 8.1 and I have a bug that appears when I resize the window on desktop devices. I have the website looking like this:

When you minimize it and resize the window then maximize again, then it looks like this, and the only way to fix it is to refresh the page:

I don’t want more than 1 image in this slideshow. When the window is resized, I’d like to make it so the slideshow doesn’t try to navigate to the 2nd slide. Any ideas on how I can fix this issue? Also, is it possible to add a video somehow instead of just images on this theme?

Here is the code to slideshow.liquid:

{% if section.blocks.size > 0 %}
  
    
    

      {% for block in section.blocks %}
        

          

            {% if block.settings.image != blank %}
              
              {% assign img_url = block.settings.image | img_url: '1x1' | replace: '_1x1.', '_{width}x.' %}
              
            {% else %}
              {% if block.settings.image == blank %}
                
                  {{ 'lifestyle-1' | placeholder_svg_tag: 'placeholder-svg' }}
                

              {% endif %}
            {% endif %}
            
              

                

                  {% unless block.settings.title == blank %}
                    

                      # 
                        {{ block.settings.title | escape }}
                      
                    

                  {% endunless %}

                  {% if section.blocks.size > 1 %}
                    
                      
                        {% include 'icon-arrow-left' %}
                        {{ 'homepage.hero.previous_slide' | t }}
                      
                      
                        {% include 'icon-arrow-right' %}
                        {{ 'homepage.hero.next_slide' | t }}
                      
                    

                  {% endif %}

                  {% unless block.settings.subheading == blank %}
                      
                        {{ block.settings.subheading | escape }}
                      
                  {% endunless %}
                  
                  {% unless block.settings.button == blank %}
                  

                    {% if block.settings.link != blank %}
                      
                        {{ block.settings.button | escape }}
                      
                    {% else %}
                      
                        {{ block.settings.button | escape }}
                      
                    {% endif %}
                  

                  {% endunless %}
                

              

            

          

        

      {% endfor %}
    

  

{% endif %}

{% if section.blocks.size == 0 %}
  {% include 'no-blocks' %}
{% endif %}

{% schema %}
{
  "name": {
    "de": "Slideshow",
    "en": "Slideshow",
    "es": "Diapositivas",
    "fr": "Diaporama",
    "it": "Presentazione",
    "ja": "スライドショー",
    "pt-BR": "Apresentação de slides"
  },
  "max_blocks": 4,
  "blocks": [
    {
      "type": "slide",
      "name": {
        "de": "Folie",
        "en": "Slide",
        "es": "Diapositiva",
        "fr": "Diapositive",
        "it": "Slide",
        "ja": "スライド",
        "pt-BR": "Slide"
      },
      "settings": [
        {
          "type": "image_picker",
          "id": "image",
          "label": {
            "de": "Foto",
            "en": "Image",
            "es": "Imagen",
            "fr": "Image",
            "it": "Immagine",
            "ja": "画像",
            "pt-BR": "Imagem"
          }
        },
        {
          "type": "text",
          "id": "title",
          "label": {
            "de": "Titel",
            "en": "Heading",
            "es": "Título",
            "fr": "Titre",
            "it": "Heading",
            "ja": "見出し",
            "pt-BR": "Título"
          },
          "default": {
            "de": "Folie",
            "en": "Slide",
            "es": "Diapositiva",
            "fr": "Diapositive",
            "it": "Slide",
            "ja": "スライド",
            "pt-BR": "Slide"
          }
        },
        {
          "type": "text",
          "id": "subheading",
          "label": {
            "de": "Unter-Überschrift",
            "en": "Subheading",
            "es": "Subtítulo",
            "fr": "Sous-titre",
            "it": "Sottotitolo",
            "ja": "小見出し",
            "pt-BR": "Subtítulo"
          },
          "default": {
            "de": "Alle Produkte ansehen",
            "en": "View all products",
            "es": "Ver todos los productos",
            "fr": "Afficher tous les résultats de produits",
            "it": "Visualizza tutti i prodotti",
            "ja": "すべての商品を表示する",
            "pt-BR": "Exibir todos os produtos"
          }
        },
        {
          "type": "url",
          "id": "link",
          "label": {
            "de": "Slide-Link",
            "en": "Slide link",
            "es": "Enlace de la diapositiva",
            "fr": "Lien de la diapositive",
            "it": "Link slide",
            "ja": "スライドリンク",
            "pt-BR": "Link do slide"
          }
        },
        {
          "type": "text",
          "id": "button",
          "label": {
            "en": "Button text"
          }
        }
      ]
    }
  ]
}
{% endschema %}