How to change preference filters

gostaria de trocar esses produtos que estão aparecendo de forma fixa por outros.
onde posso configurar a regra para que o produto que o cliente esteja vendo seja parecido com os outros que estão logo abaixo?


o

Hi, how are you?

If you’re using VTEX IO

You can do this in two ways:

  • Through code, by inserting the filter in the shelf

Like this:

          "list-context.product-list#home": {
            "blocks": [
              "product-summary.shelf"
            ],
            "children": [
              "slider-layout#home-shelf"
            ],
            "props": {
              "orderBy": "OrderByTopSaleDESC",
              "width": "100%",
              "hideUnavailableItems":true,
              "category":"138" <--- the category goes here
            }
          },

or

  • Through the site editor, by accessing the shelf and entering the category, collection, or specification.

Like this:

I hope this helps, cheers!