# How to Hide the Shipping Protection Product from Recommendations

**Overview**\
After you publish Shipping Protection to your store, Protectify will automatically create a Shipping Protection product in your store’s product list. By default, this product may appear in your store’s product recommendation lists, allowing customers to purchase it directly. However, this experience may not be ideal for customers, so we recommend hiding this product from your store’s product recommendations.

**Steps:**

**Step 1:** In your Shopify admin, navigate to **Theme** and click **Customize**.

<figure><img src="/files/Wzxjj2StXZVEET3KqCH5" alt=""><figcaption></figcaption></figure>

**Step 2:** Click the three dots next to your theme name and select **Edit code**.

<figure><img src="/files/glzg9ml1CA2WM0jW71EI" alt=""><figcaption></figcaption></figure>

**Step 3:** Search for or select the **related-products.liquid** file.

<figure><img src="/files/gPhIEFJvvsw1BvBfxWYj" alt=""><figcaption></figcaption></figure>

**Step 4:** Locate and select the relevant code section.

<figure><img src="/files/CLwwxgpTBevWvrw4qwYw" alt=""><figcaption></figcaption></figure>

**Step 5:** Replace the selected code with the new code provided below.

```
<ul
        class="grid product-grid grid--{{ section.settings.columns_desktop }}-col-desktop grid--{{ section.settings.columns_mobile }}-col-tablet-down"
        role="list"
      >
        {% for recommendation in recommendations.products %}
          {% if recommendation.vendor contains "Protectify" %}
           {% continue %}
           {% else %}
          <li class="grid__item">
            {% 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
            %}
          </li>
          {% endif %}
        {% endfor %}
      </ul>
```

**Step 6:** After replacing the code, the final target code should look like this. Remember to click Save to save your changes, then check your store’s product recommendation list to ensure the Shipping Protection product is hidden.

<figure><img src="/files/MTEh6eN289ByOD1YH13N" alt=""><figcaption></figcaption></figure>

***

*Note: For specific code snippets or further customization, please refer to your theme documentation or contact our support team at s*<mark style="color:purple;"><upport@protectifyapp.com></mark>*.*


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://protectify.gitbook.io/protectify-docs/how-to-hide-the-shipping-protection-product-from-recommendations.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
