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
Recentemente encontrei esta solução para Google Shopping Feed aqui no Git Hub, instalei em minha loja virtual e me deparei com o seguinte problrma:
Não mostravem title, description e entrte outras informações requeridas do Google Merchant Center.
A Solução foi Adicionar no Código do arquivo product.php
public function getFilteredProducts() { $collection = $this->_productCollectionFactory->create(); // $collection->addAttributeToFilter('status',\Magento\Catalog\Model\Product\Attribute\Source\Status::STATUS_ENABLED); //$collection->addAttributeToFilter('status', ['in' => $this->_productStatus->getVisibleStatusIds()]); // $collection->setVisibility($this->_productVisibility->getVisibleInSiteIds()); // $collection = $productCollectionFactory->create(); $collection->addAttributeToSelect('*'); return $collection; }
Desta forma passei a ter todos os dados dos produtos de minha loja.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Recentemente encontrei esta solução para Google Shopping Feed aqui no Git Hub, instalei em minha loja virtual e me deparei com o seguinte problrma:
Não mostravem title, description e entrte outras informações requeridas do Google Merchant Center.
A Solução foi Adicionar no Código do arquivo product.php
Desta forma passei a ter todos os dados dos produtos de minha loja.
The text was updated successfully, but these errors were encountered: