Why has the top slideshow vanished from our websites?

Topic summary

A Shopify store owner reports that their homepage slideshow has suddenly disappeared from two websites (vapedistillery.com and wholesale.vapedistillery.com). The slideshow still appears in the site editor but is not displaying on the live site, and no recent changes were made to the website before this occurred.

Proposed Solution:
A community member suggests adding custom CSS code to force the slideshow to display:

  • Navigate to Online Store → Theme → Edit code
  • Add CSS styling (display: block !important) to the flexslider slides element
  • Insert the code before the </body> tag in the theme.liquid file

The issue appears to be a visibility/display problem rather than the slideshow being deleted. The discussion remains open regarding whether this solution resolved the problem.

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

Hello,

Our top slideshow has disappeared off both of our websites, We have not made any changes to the website before this had happened. It is still showing up on the site editor but not displaying on the site.

https://www.vapedistillery.com/

https://wholesale.vapedistillery.com/

Hello @Vapedistillery

I would like to give you a solution to support you:

  1. Go to Online Store-> Theme-> Edit code
  2. Open your theme.liquid theme file
  3. Paste the below code before :
.flexslider .slides > li { display: block !important; }