What are the Slack Archives?

It’s a history of our time together in the Slack Community! There’s a ton of knowledge in here, so feel free to search through the archives for a possible answer to your question.

Because this space is not active, you won’t be able to create a new post or comment here. If you have a question or want to start a discussion about something, head over to our categories and pick one to post in! You can always refer back to a post from Slack Archives if needed; just copy the link to use it as a reference..

I have imported products and it's visible in search and search result page. I can access product det

U035GSLDLVD
U035GSLDLVD Posts: 90 🧑🏻‍🚀 - Cadet

I have imported products and it's visible in search and search result page. I can access product detail page as well. But that product is not showing up on category page. Is there any command I need to run to make product visible on category page?

I found this article, but command given here doesn't exist in my system:
https://docs.spryker.com/docs/scos/dev/tutorials-and-howtos/howtos/howto-product-data-from-import-to-front-end-view.html#importing-pr[…]sql-database

Symfony\Component\Console\Exception\NamespaceNotFoundException - Exception: There are no commands defined in the "collector:storage" namespace. 
in /data/vendor/symfony/console/Application.php (605)

Comments

  • U01LKKBK97T
    U01LKKBK97T Posts: 287 🧑🏻‍🚀 - Cadet

    After you've run the import by data:import, you can publish everything to redis and search by publish:trigger-events . You can track progress by opening http://queue.spryker.local in your browser. Once all messages of all queues have been processed, check if your products appear on category pages.

    If not, check if your import is assigning products to categories?
    Have a look at db table spy_category_product and see if it's having records after import.

  • U035GSLDLVD
    U035GSLDLVD Posts: 90 🧑🏻‍🚀 - Cadet

    @U01LKKBK97T Thanks! will check it.