We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
For some reasons our ProductCarousel show more then 7000 products.
The catalog_product_link Table is empty so I think the products are taking out from ElasticSearch Index.
catalog_product_link
I think it´s very good to set a limit:
https://github.com/magesuite/content-constructor-frontend/blob/3.x/Model/Component/ProductCarousel.php
public function getProducts() { if($this->products === null) { + $this->setData('limit', 20); $this->products = $this->dataProvider->getProducts($this->getData(), true); } return $this->products; }
The text was updated successfully, but these errors were encountered:
Hi
Product carousel accepts limit in data passed to the component:
limit
https://github.com/magesuite/content-constructor-frontend/blob/5.x/DataProviders/ProductCarouselDataProvider.php#L317
And by default in the Content Constructor product carousel configuration that limit is set to 20:
Sorry, something went wrong.
But where I set this limit for the after 'Add to Cart' product carousel popup?
No branches or pull requests
For some reasons our ProductCarousel show more then 7000 products.
The
catalog_product_link
Table is empty so I think the products are taking out from ElasticSearch Index.I think it´s very good to set a limit:
https://github.com/magesuite/content-constructor-frontend/blob/3.x/Model/Component/ProductCarousel.php
The text was updated successfully, but these errors were encountered: