Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve the validation list. #1990

Merged
merged 4 commits into from
Jul 11, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: "HowTo: Make a product searchable and shown on the Storefront"
description: Use the guide to learn about conditions need to be performed to make a product searchable in the online store.
last_updated: Jun 16, 2021
description: Use the guide to learn about the conditions required to make a product searchable in the online store.
last_updated: Jul 11, 2023
template: howto-guide-template
originalLink: https://documentation.spryker.com/2021080/docs/ht-make-product-shown-on-frontend-by-url
originalArticleId: c8a71f89-7fea-4bd5-9c50-3f372b8af760
Expand Down Expand Up @@ -30,11 +30,18 @@ related:

The document describes the flow of making a product searchable and displayed on the Storefront.

There are a number of conditions that must be fulfilled to make your product searchable and shown on Yves by URL. What is important is to make sure that your product meets the following conditions:
There are a number of conditions that must be fulfilled to make your product searchable and shown on Yves by URL. Ensure your product meets the following conditions:

* It is assigned to categories. For information about how to assign products to categories, see the [Category](/docs/pbc/all/product-information-management/{{site.version}}/manage-in-the-back-office/category/assign-products-to-categories.html) section.
* It is in stock in the warehouse for the current store. To learn how to check products' availability, see the [Availability](/docs/scos/user/back-office-user-guides/{{site.version}}/catalog/availability/managing-products-availability.html) section.
* The product's status is `Active`. To learn how to manage products, including the status change, see the [Products](/docs/pbc/all/product-information-management/{{site.version}}/manage-in-the-back-office/products/manage-products.html#activating-products) section.
* It has a price in the current locale. For more details, see the [Products](/docs/pbc/all/product-information-management/{{site.version}}/manage-in-the-back-office/products/manage-products.html) section.
* It has been marked as searchable in the Back Office. For more details, see the [Products](/docs/pbc/all/product-information-management/{{site.version}}/manage-in-the-back-office/products/manage-product-variants/create-product-variants.html) section.
* It has product variants—an abstract product is not displayed on Yves unless it has product variants. To learn how to create product variants, [Products](/docs/pbc/all/product-information-management/{{site.version}}/manage-in-the-back-office/products/manage-product-variants/create-product-variants.html).
* Product abstract is assigned to at least one category. For information about how to assign products to categories, see the [Category](/docs/pbc/all/product-information-management/{{page.version}}/manage-in-the-back-office/category/assign-products-to-categories.html) section.
* The product abstract's status is `Active`. To learn how to manage products, including the status change, see the [Products](/docs/pbc/all/product-information-management/{{page.version}}/manage-in-the-back-office/products/manage-products.html#activating-products) section.
* Product abstract has been marked as searchable in the Back Office. For more details, see the [Products](/docs/pbc/all/product-information-management/{{page.version}}/manage-in-the-back-office/products/manage-product-variants/create-product-variants.html) section.
* Product abstract has at least one product variant and the status is `Active`: an abstract product isn't displayed on Yves unless it has product variants. To learn how to create product variants, [Products](/docs/pbc/all/product-information-management/{{page.version}}/manage-in-the-back-office/products/manage-product-variants/create-product-variants.html).
* Active product variant is available for the current store. To learn how to check products' availability, see the [Availability](/docs/scos/user/back-office-user-guides/{{page.version}}/catalog/availability/managing-products-availability.html) section.
* Product abstract and active variant have a price in the current locale. For more details, see the [Product Prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/prices-feature-overview/prices-feature-overview.html) section.
* Product abstract has localized attributes. For the current locale, see the [Edit product attributes](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-in-the-back-office/attributes/edit-product-attributes.html) section.

{% info_block infoBox "Note" %}

Note that changes on the project may affect this list, shortening required steps or adding new ones.

{% endinfo_block %}
Loading