How to close complementary products by default?

https://0db1d3-5b.myshopify.com/products/test

On that page “Shop this look” is a “Complimentary product” section, which I think was added by Shopify’s Search & Discover all. It allows me to turn it into a “Collapsible Row”, but it doesn’t have an option to load it open or closed on default.

Whenever I search the files for complimentary, I don’t find anything related to this section to see if I can somehow manage it from code. What would be the simple way to have it appear closed by default when the page loads?

Look in the sections/main-product.liquid.

There is a piece of code like this:


  {%- if block.settings.make_collapsible_row -%}
    

Simply remove *open* from the **details** tag.

That did it! Thank you!