Can't find "You May Also Like" section in my store to edit it

At the bottom of my product pages is a section called “You May Also Like”. I need to edit this section to remove a vendor from showing up in the results. My problem is I can not find this section to edit it. I have looked under collections and it’s not listed there. I have looked at apps and nothing there makes sense. I have looked at the store editor and can’t find it. I have the Dawn theme.

Hi, @giftsfulfilled . I’m happy to help you out with this!

The “You may also like” area you’re speaking about is the Related products section that can be found in the Default product template in your theme editor. I’ve added a screenshot below to help explain where to find it. The products that appear in this section are auto-generated by Shopify based on criteria like products that are commonly purchased together, have a similar product description, or products in related collections. These recommendations become more accurate over time as more order and product information becomes available.

If you’d like more control over the product recommendations that appear you’ll want to use the Shopify Search & Discovery app. You can learn more about the Search & Discovery app here. We also have more information on customizing product recommendations using this app, here.

Please let me know if you have any questions!

Thanks Erin, I found the code so I think I may end up just removing it all together. The problem I have is that we have private label customers and their products end up in the recommeded section and they are not available to general public so I have to get those out of there.

Hey, @giftsfulfilled !

I’m helping Erin out with some replies today. Thanks for getting back to us!

You can definitely remove the section if you don’t feel like you need it. Alternatively, you can manually choose products to be included in the product recommendations section (and select all the products that aren’t from this particular vendor). You can do this using metafields, and more information can be found in this help document.

Please let me know if you have any other questions!

Thanks Greta, I will check that out. I found the html code where this section is located but have no idea how to edit the html to remove a vendor from the choices that are auto filled in. The Search and Discovery App doesn’t replace this section so that won’t help with this particular issue. I’ve pasted the code below if you can tell me what to paste and where I can update that easily enough, but all my searches don’t turn up how to edit this code to do what I need it to do.

{{ ‘component-card.css’ | asset_url | stylesheet_tag }}
{{ ‘component-price.css’ | asset_url | stylesheet_tag }}
{{ ‘section-related-products.css’ | asset_url | stylesheet_tag }}

{% if section.settings.image_shape == ‘blob’ %}
{{ ‘mask-blobs.css’ | asset_url | stylesheet_tag }}
{%- endif -%}

{%- style -%}
.section-{{ section.id }}-padding {
padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
}

@media screen and (min-width: 750px) {
.section-{{ section.id }}-padding {
padding-top: {{ section.settings.padding_top }}px;
padding-bottom: {{ section.settings.padding_bottom }}px;
}
}
{%- endstyle -%}

{% if recommendations.performed and recommendations.products_count > 0 %}

{{ section.settings.heading }}

    {% for recommendation in recommendations.products %}
  • {% render 'card-product', card_product: recommendation, media_aspect_ratio: section.settings.image_ratio, image_shape: section.settings.image_shape, show_secondary_image: section.settings.show_secondary_image, show_vendor: section.settings.show_vendor, show_rating: section.settings.show_rating %}
  • {% endfor %}
{% endif %} {% if section.settings.image_shape == 'arch' %} {% render 'mask-arch' %} {%- endif -%}
{% schema %} { "name": "t:sections.related-products.name", "tag": "section", "class": "section", "settings": [ { "type": "paragraph", "content": "t:sections.related-products.settings.paragraph__1.content" }, { "type": "inline_richtext", "id": "heading", "default": "You may also like", "label": "t:sections.related-products.settings.heading.label" }, { "type": "select", "id": "heading_size", "options": [ { "value": "h2", "label": "t:sections.all.heading_size.options__1.label" }, { "value": "h1", "label": "t:sections.all.heading_size.options__2.label" }, { "value": "h0", "label": "t:sections.all.heading_size.options__3.label" } ], "default": "h1", "label": "t:sections.all.heading_size.label" }, { "type": "range", "id": "products_to_show", "min": 2, "max": 10, "step": 1, "default": 4, "label": "t:sections.related-products.settings.products_to_show.label"

},
{
“type”: “range”,
“id”: “columns_desktop”,
“min”: 1,
“max”: 5,
“step”: 1,
“default”: 4,
“label”: “t:sections.related-products.settings.columns_desktop.label”
},
{
“type”: “color_scheme”,
“id”: “color_scheme”,
“label”: “t:sections.all.colors.label”,
“info”: “t:sections.all.colors.has_cards_info”,
“default”: “background-1”
},
{
“type”: “header”,
“content”: “t:sections.related-products.settings.header__2.content”
},
{
“type”: “select”,
“id”: “image_ratio”,
“options”: [
{
“value”: “adapt”,
“label”: “t:sections.related-products.settings.image_ratio.options__1.label”
},
{
“value”: “portrait”,
“label”: “t:sections.related-products.settings.image_ratio.options__2.label”
},
{
“value”: “square”,
“label”: “t:sections.related-products.settings.image_ratio.options__3.label”
}
],
“default”: “adapt”,
“label”: “t:sections.related-products.settings.image_ratio.label”
},
{
“type”: “select”,
“id”: “image_shape”,
“options”: [
{
“value”: “default”,
“label”: “t:sections.all.image_shape.options__1.label”
},
{
“value”: “arch”,
“label”: “t:sections.all.image_shape.options__2.label”
},
{
“value”: “blob”,
“label”: “t:sections.all.image_shape.options__3.label”
},
{
“value”: “chevronleft”,
“label”: “t:sections.all.image_shape.options__4.label”
},
{
“value”: “chevronright”,
“label”: “t:sections.all.image_shape.options__5.label”
},
{
“value”: “diamond”,
“label”: “t:sections.all.image_shape.options__6.label”
},
{
“value”: “parallelogram”,
“label”: “t:sections.all.image_shape.options__7.label”
},
{
“value”: “round”,
“label”: “t:sections.all.image_shape.options__8.label”
}
],
“default”: “default”,
“label”: “t:sections.all.image_shape.label”,
“info”: “t:sections.all.image_shape.info”
},
{
“type”: “checkbox”,
“id”: “show_secondary_image”,
“default”: false,
“label”: “t:sections.related-products.settings.show_secondary_image.label”
},
{
“type”: “checkbox”,
“id”: “show_vendor”,
“default”: false,
“label”: “t:sections.related-products.settings.show_vendor.label”
},
{
“type”: “checkbox”,
“id”: “show_rating”,
“default”: false,
“label”: “t:sections.related-products.settings.show_rating.label”,
“info”: “t:sections.related-products.settings.show_rating.info”
},
{
“type”: “header”,
“content”: “t:sections.related-products.settings.header_mobile.content”
},
{
“type”: “select”,
“id”: “columns_mobile”,
“default”: “2”,
“label”: “t:sections.related-products.settings.columns_mobile.label”,
“options”: [
{
“value”: “1”,
“label”: “t:sections.related-products.settings.columns_mobile.options__1.label”
},
{
“value”: “2”,
“label”: “t:sections.related-products.settings.columns_mobile.options__2.label”
}
]
},
{
“type”: “header”,
“content”: “t:sections.all.padding.section_padding_heading”
},
{
“type”: “range”,
“id”: “padding_top”,
“min”: 0,
“max”: 100,
“step”: 4,
“unit”: “px”,
“label”: “t:sections.all.padding.padding_top”,
“default”: 36
},
{
“type”: “range”,
“id”: “padding_bottom”,
“min”: 0,
“max”: 100,
“step”: 4,
“unit”: “px”,
“label”: “t:sections.all.padding.padding_bottom”,
“default”: 36
}
]
}
{% endschema %}

Hi, @giftsfulfilled !

Thanks for confirming, and I appreciate your patience.

I’m not able to advise you on custom coding changes as that is out of my scope of support. However, I recommend contacting our live support team through the Help Center to determine whether our theme specialists can make this change for you. To contact our team, head over to the Help Center, enter the details of your question into the chat assistant, and select I still need help.

Please let me know if you have any other questions!

you can get a person through chat anymore once you get to this point that is a far as it goes

Hi, @giftsfulfilled !

Thank you for sharing that screenshot. I recommend clearing your cache and cookies and/or using an incognito window to access the Help Center and try the steps again. You’ll want to type in the details of your issue such as I need theme assistance to make a custom change and then click “I still need help”.

Please let me know if you’re able to connect with a support advisor!

I got through finally and was told to hire an expert so I just deleted all the code and made the section disappear.

Thank you for that update, @giftsfulfilled !

Not all customizations are supported by our team, and when that is the case, we recommend hiring a Shopify Expert. You can find more details in our design policy.

But I am glad to hear removing the code worked for you! I hope your product pages work better for your purposes now.

Please let me know if there’s anything else I can help you with!