Error: Class Magneto_PopupQuestionProducts does not exist












0















hello I want to call the file in form.xml to display the product name but i am getting error class not found



form.xml



    <field name="entity_id">
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="dataType" xsi:type="string">text</item>
<item name="label" translate="true" xsi:type="string">product name</item>
<item name="formElement" xsi:type="string">input</item>
<item name="source" xsi:type="string">Product</item>
<item name="disabled" xsi:type="boolean">true</item>
<item name="class" xsi:type="string">Magneto_PopupQuestionProducts</item>
<item name="sortOrder" xsi:type="number">30</item>
<item name="dataScope" xsi:type="string">entity_id</item>
<item name="validation" xsi:type="array">
<item name="required-entry" xsi:type="boolean">false</item>
</item>
</item>
</argument>
</field>


products.php



<?php
namespace MagnetoPopupQuestionUiComponentListingColumn;

use MagentoCatalogApiProductRepositoryInterface;
use MagentoFrameworkViewElementUiComponentContextInterface;
use MagentoFrameworkViewElementUiComponentFactory;
use MagentoUiComponentListingColumnsColumn;

class Products extends Column
{
protected $_ProductRepository;

public function __construct(
ContextInterface $context,
UiComponentFactory $uiComponentFactory,
ProductRepositoryInterface $ProductRepository,
array $components = ,
array $data =
) {
$this->_ProductRepository = $ProductRepository;
parent::__construct($context, $uiComponentFactory, $components, $data);
}

public function prepareDataSource(array $dataSource)
{
if (isset($dataSource['data']['items'])) {
foreach ($dataSource['data']['items'] as $key => $items) {
$product = $this->_ProductRepository->getById($items["entity_id"]);
$dataSource['data']['items'][$key]['entity_id'] = $product->getName(); //to get product name
}
}
return $dataSource;
}
}









share|improve this question

























  • <item name="class" xsi:type="string">MagnetoPopupQuestionUiComponentListingColumnProducts</item>

    – Satish Dubariya
    15 hours ago











  • Class MagentoPopupQuestionUiComponentListingColumnProducts does not exist is coming

    – Ashish Ramchandani
    15 hours ago
















0















hello I want to call the file in form.xml to display the product name but i am getting error class not found



form.xml



    <field name="entity_id">
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="dataType" xsi:type="string">text</item>
<item name="label" translate="true" xsi:type="string">product name</item>
<item name="formElement" xsi:type="string">input</item>
<item name="source" xsi:type="string">Product</item>
<item name="disabled" xsi:type="boolean">true</item>
<item name="class" xsi:type="string">Magneto_PopupQuestionProducts</item>
<item name="sortOrder" xsi:type="number">30</item>
<item name="dataScope" xsi:type="string">entity_id</item>
<item name="validation" xsi:type="array">
<item name="required-entry" xsi:type="boolean">false</item>
</item>
</item>
</argument>
</field>


products.php



<?php
namespace MagnetoPopupQuestionUiComponentListingColumn;

use MagentoCatalogApiProductRepositoryInterface;
use MagentoFrameworkViewElementUiComponentContextInterface;
use MagentoFrameworkViewElementUiComponentFactory;
use MagentoUiComponentListingColumnsColumn;

class Products extends Column
{
protected $_ProductRepository;

public function __construct(
ContextInterface $context,
UiComponentFactory $uiComponentFactory,
ProductRepositoryInterface $ProductRepository,
array $components = ,
array $data =
) {
$this->_ProductRepository = $ProductRepository;
parent::__construct($context, $uiComponentFactory, $components, $data);
}

public function prepareDataSource(array $dataSource)
{
if (isset($dataSource['data']['items'])) {
foreach ($dataSource['data']['items'] as $key => $items) {
$product = $this->_ProductRepository->getById($items["entity_id"]);
$dataSource['data']['items'][$key]['entity_id'] = $product->getName(); //to get product name
}
}
return $dataSource;
}
}









share|improve this question

























  • <item name="class" xsi:type="string">MagnetoPopupQuestionUiComponentListingColumnProducts</item>

    – Satish Dubariya
    15 hours ago











  • Class MagentoPopupQuestionUiComponentListingColumnProducts does not exist is coming

    – Ashish Ramchandani
    15 hours ago














0












0








0








hello I want to call the file in form.xml to display the product name but i am getting error class not found



form.xml



    <field name="entity_id">
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="dataType" xsi:type="string">text</item>
<item name="label" translate="true" xsi:type="string">product name</item>
<item name="formElement" xsi:type="string">input</item>
<item name="source" xsi:type="string">Product</item>
<item name="disabled" xsi:type="boolean">true</item>
<item name="class" xsi:type="string">Magneto_PopupQuestionProducts</item>
<item name="sortOrder" xsi:type="number">30</item>
<item name="dataScope" xsi:type="string">entity_id</item>
<item name="validation" xsi:type="array">
<item name="required-entry" xsi:type="boolean">false</item>
</item>
</item>
</argument>
</field>


products.php



<?php
namespace MagnetoPopupQuestionUiComponentListingColumn;

use MagentoCatalogApiProductRepositoryInterface;
use MagentoFrameworkViewElementUiComponentContextInterface;
use MagentoFrameworkViewElementUiComponentFactory;
use MagentoUiComponentListingColumnsColumn;

class Products extends Column
{
protected $_ProductRepository;

public function __construct(
ContextInterface $context,
UiComponentFactory $uiComponentFactory,
ProductRepositoryInterface $ProductRepository,
array $components = ,
array $data =
) {
$this->_ProductRepository = $ProductRepository;
parent::__construct($context, $uiComponentFactory, $components, $data);
}

public function prepareDataSource(array $dataSource)
{
if (isset($dataSource['data']['items'])) {
foreach ($dataSource['data']['items'] as $key => $items) {
$product = $this->_ProductRepository->getById($items["entity_id"]);
$dataSource['data']['items'][$key]['entity_id'] = $product->getName(); //to get product name
}
}
return $dataSource;
}
}









share|improve this question
















hello I want to call the file in form.xml to display the product name but i am getting error class not found



form.xml



    <field name="entity_id">
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="dataType" xsi:type="string">text</item>
<item name="label" translate="true" xsi:type="string">product name</item>
<item name="formElement" xsi:type="string">input</item>
<item name="source" xsi:type="string">Product</item>
<item name="disabled" xsi:type="boolean">true</item>
<item name="class" xsi:type="string">Magneto_PopupQuestionProducts</item>
<item name="sortOrder" xsi:type="number">30</item>
<item name="dataScope" xsi:type="string">entity_id</item>
<item name="validation" xsi:type="array">
<item name="required-entry" xsi:type="boolean">false</item>
</item>
</item>
</argument>
</field>


products.php



<?php
namespace MagnetoPopupQuestionUiComponentListingColumn;

use MagentoCatalogApiProductRepositoryInterface;
use MagentoFrameworkViewElementUiComponentContextInterface;
use MagentoFrameworkViewElementUiComponentFactory;
use MagentoUiComponentListingColumnsColumn;

class Products extends Column
{
protected $_ProductRepository;

public function __construct(
ContextInterface $context,
UiComponentFactory $uiComponentFactory,
ProductRepositoryInterface $ProductRepository,
array $components = ,
array $data =
) {
$this->_ProductRepository = $ProductRepository;
parent::__construct($context, $uiComponentFactory, $components, $data);
}

public function prepareDataSource(array $dataSource)
{
if (isset($dataSource['data']['items'])) {
foreach ($dataSource['data']['items'] as $key => $items) {
$product = $this->_ProductRepository->getById($items["entity_id"]);
$dataSource['data']['items'][$key]['entity_id'] = $product->getName(); //to get product name
}
}
return $dataSource;
}
}






magento2






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited 14 hours ago









Satish Dubariya

316112




316112










asked 15 hours ago









Ashish RamchandaniAshish Ramchandani

558




558













  • <item name="class" xsi:type="string">MagnetoPopupQuestionUiComponentListingColumnProducts</item>

    – Satish Dubariya
    15 hours ago











  • Class MagentoPopupQuestionUiComponentListingColumnProducts does not exist is coming

    – Ashish Ramchandani
    15 hours ago



















  • <item name="class" xsi:type="string">MagnetoPopupQuestionUiComponentListingColumnProducts</item>

    – Satish Dubariya
    15 hours ago











  • Class MagentoPopupQuestionUiComponentListingColumnProducts does not exist is coming

    – Ashish Ramchandani
    15 hours ago

















<item name="class" xsi:type="string">MagnetoPopupQuestionUiComponentListingColumnProducts</item>

– Satish Dubariya
15 hours ago





<item name="class" xsi:type="string">MagnetoPopupQuestionUiComponentListingColumnProducts</item>

– Satish Dubariya
15 hours ago













Class MagentoPopupQuestionUiComponentListingColumnProducts does not exist is coming

– Ashish Ramchandani
15 hours ago





Class MagentoPopupQuestionUiComponentListingColumnProducts does not exist is coming

– Ashish Ramchandani
15 hours ago










2 Answers
2






active

oldest

votes


















0














Magneto_PopupQuestionProducts is not a valid classpath




  • Typo in Magento

  • not the classes namespace


<item name="class" xsi:type="string">MagentoPopupQuestionUiComponentListingColumnProducts</item>





share|improve this answer
























  • same error is coming Class MagentoPopupQuestionUiComponentListingColumnProducts does not exist

    – Ashish Ramchandani
    15 hours ago











  • did you correct the namespace in your PHP-file?

    – Philipp Sander
    15 hours ago











  • yes no error but product name is not displaying i want to display product name through product id

    – Ashish Ramchandani
    15 hours ago



















0














Use Full Class path:
<item name="class" xsi:type="string">MagnetoPopupQuestionUiComponentListingColumnProducts</item>



Also verify either you are using Magento or Magneto.



<?php
namespace MagentoPopupQuestionUiComponentListingColumn

use MagentoCatalogApiProductRepositoryInterface;
use MagentoFrameworkViewElementUiComponentContextInterface;
use MagentoFrameworkViewElementUiComponentFactory;
use MagentoUiComponentListingColumnsColumn;

class Products extends Column
{
protected $_ProductRepository;

public function __construct(
ContextInterface $context,
UiComponentFactory $uiComponentFactory,
ProductRepositoryInterface $ProductRepository,
array $components = ,
array $data =
) {
$this->_ProductRepository = $ProductRepository;
parent::__construct($context, $uiComponentFactory, $components, $data);
}

public function prepareDataSource(array $dataSource)
{
$fieldName = $this->getData('name');

if (isset($dataSource['data']['items'])) {
foreach ($dataSource['data']['items'] as &$item) {
$product = $this->_ProductRepository->getById($item["entity_id"]);
$item[$fieldName] = $product->getName();
}
}
return $dataSource;
}
}





share|improve this answer


























  • Class MagentoPopupQuestionUiComponentListingColumnProducts does not exist is coming

    – Ashish Ramchandani
    15 hours ago











  • Then you should write MagentoPopupQuestionUiComponentListingColumnProducts in class argument you passed in item. also namespace in your Products.php file has typo,

    – Satish Dubariya
    15 hours ago













  • no error is coming but the output does not come I want to display the product name through product id i have store product id

    – Ashish Ramchandani
    15 hours ago











  • Check my updated code

    – Satish Dubariya
    14 hours ago











  • what changes you have done i cannot see any change

    – Ashish Ramchandani
    14 hours ago













Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "479"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f262254%2ferror-class-magneto-popupquestion-products-does-not-exist%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























2 Answers
2






active

oldest

votes








2 Answers
2






active

oldest

votes









active

oldest

votes






active

oldest

votes









0














Magneto_PopupQuestionProducts is not a valid classpath




  • Typo in Magento

  • not the classes namespace


<item name="class" xsi:type="string">MagentoPopupQuestionUiComponentListingColumnProducts</item>





share|improve this answer
























  • same error is coming Class MagentoPopupQuestionUiComponentListingColumnProducts does not exist

    – Ashish Ramchandani
    15 hours ago











  • did you correct the namespace in your PHP-file?

    – Philipp Sander
    15 hours ago











  • yes no error but product name is not displaying i want to display product name through product id

    – Ashish Ramchandani
    15 hours ago
















0














Magneto_PopupQuestionProducts is not a valid classpath




  • Typo in Magento

  • not the classes namespace


<item name="class" xsi:type="string">MagentoPopupQuestionUiComponentListingColumnProducts</item>





share|improve this answer
























  • same error is coming Class MagentoPopupQuestionUiComponentListingColumnProducts does not exist

    – Ashish Ramchandani
    15 hours ago











  • did you correct the namespace in your PHP-file?

    – Philipp Sander
    15 hours ago











  • yes no error but product name is not displaying i want to display product name through product id

    – Ashish Ramchandani
    15 hours ago














0












0








0







Magneto_PopupQuestionProducts is not a valid classpath




  • Typo in Magento

  • not the classes namespace


<item name="class" xsi:type="string">MagentoPopupQuestionUiComponentListingColumnProducts</item>





share|improve this answer













Magneto_PopupQuestionProducts is not a valid classpath




  • Typo in Magento

  • not the classes namespace


<item name="class" xsi:type="string">MagentoPopupQuestionUiComponentListingColumnProducts</item>






share|improve this answer












share|improve this answer



share|improve this answer










answered 15 hours ago









Philipp SanderPhilipp Sander

4721420




4721420













  • same error is coming Class MagentoPopupQuestionUiComponentListingColumnProducts does not exist

    – Ashish Ramchandani
    15 hours ago











  • did you correct the namespace in your PHP-file?

    – Philipp Sander
    15 hours ago











  • yes no error but product name is not displaying i want to display product name through product id

    – Ashish Ramchandani
    15 hours ago



















  • same error is coming Class MagentoPopupQuestionUiComponentListingColumnProducts does not exist

    – Ashish Ramchandani
    15 hours ago











  • did you correct the namespace in your PHP-file?

    – Philipp Sander
    15 hours ago











  • yes no error but product name is not displaying i want to display product name through product id

    – Ashish Ramchandani
    15 hours ago

















same error is coming Class MagentoPopupQuestionUiComponentListingColumnProducts does not exist

– Ashish Ramchandani
15 hours ago





same error is coming Class MagentoPopupQuestionUiComponentListingColumnProducts does not exist

– Ashish Ramchandani
15 hours ago













did you correct the namespace in your PHP-file?

– Philipp Sander
15 hours ago





did you correct the namespace in your PHP-file?

– Philipp Sander
15 hours ago













yes no error but product name is not displaying i want to display product name through product id

– Ashish Ramchandani
15 hours ago





yes no error but product name is not displaying i want to display product name through product id

– Ashish Ramchandani
15 hours ago













0














Use Full Class path:
<item name="class" xsi:type="string">MagnetoPopupQuestionUiComponentListingColumnProducts</item>



Also verify either you are using Magento or Magneto.



<?php
namespace MagentoPopupQuestionUiComponentListingColumn

use MagentoCatalogApiProductRepositoryInterface;
use MagentoFrameworkViewElementUiComponentContextInterface;
use MagentoFrameworkViewElementUiComponentFactory;
use MagentoUiComponentListingColumnsColumn;

class Products extends Column
{
protected $_ProductRepository;

public function __construct(
ContextInterface $context,
UiComponentFactory $uiComponentFactory,
ProductRepositoryInterface $ProductRepository,
array $components = ,
array $data =
) {
$this->_ProductRepository = $ProductRepository;
parent::__construct($context, $uiComponentFactory, $components, $data);
}

public function prepareDataSource(array $dataSource)
{
$fieldName = $this->getData('name');

if (isset($dataSource['data']['items'])) {
foreach ($dataSource['data']['items'] as &$item) {
$product = $this->_ProductRepository->getById($item["entity_id"]);
$item[$fieldName] = $product->getName();
}
}
return $dataSource;
}
}





share|improve this answer


























  • Class MagentoPopupQuestionUiComponentListingColumnProducts does not exist is coming

    – Ashish Ramchandani
    15 hours ago











  • Then you should write MagentoPopupQuestionUiComponentListingColumnProducts in class argument you passed in item. also namespace in your Products.php file has typo,

    – Satish Dubariya
    15 hours ago













  • no error is coming but the output does not come I want to display the product name through product id i have store product id

    – Ashish Ramchandani
    15 hours ago











  • Check my updated code

    – Satish Dubariya
    14 hours ago











  • what changes you have done i cannot see any change

    – Ashish Ramchandani
    14 hours ago


















0














Use Full Class path:
<item name="class" xsi:type="string">MagnetoPopupQuestionUiComponentListingColumnProducts</item>



Also verify either you are using Magento or Magneto.



<?php
namespace MagentoPopupQuestionUiComponentListingColumn

use MagentoCatalogApiProductRepositoryInterface;
use MagentoFrameworkViewElementUiComponentContextInterface;
use MagentoFrameworkViewElementUiComponentFactory;
use MagentoUiComponentListingColumnsColumn;

class Products extends Column
{
protected $_ProductRepository;

public function __construct(
ContextInterface $context,
UiComponentFactory $uiComponentFactory,
ProductRepositoryInterface $ProductRepository,
array $components = ,
array $data =
) {
$this->_ProductRepository = $ProductRepository;
parent::__construct($context, $uiComponentFactory, $components, $data);
}

public function prepareDataSource(array $dataSource)
{
$fieldName = $this->getData('name');

if (isset($dataSource['data']['items'])) {
foreach ($dataSource['data']['items'] as &$item) {
$product = $this->_ProductRepository->getById($item["entity_id"]);
$item[$fieldName] = $product->getName();
}
}
return $dataSource;
}
}





share|improve this answer


























  • Class MagentoPopupQuestionUiComponentListingColumnProducts does not exist is coming

    – Ashish Ramchandani
    15 hours ago











  • Then you should write MagentoPopupQuestionUiComponentListingColumnProducts in class argument you passed in item. also namespace in your Products.php file has typo,

    – Satish Dubariya
    15 hours ago













  • no error is coming but the output does not come I want to display the product name through product id i have store product id

    – Ashish Ramchandani
    15 hours ago











  • Check my updated code

    – Satish Dubariya
    14 hours ago











  • what changes you have done i cannot see any change

    – Ashish Ramchandani
    14 hours ago
















0












0








0







Use Full Class path:
<item name="class" xsi:type="string">MagnetoPopupQuestionUiComponentListingColumnProducts</item>



Also verify either you are using Magento or Magneto.



<?php
namespace MagentoPopupQuestionUiComponentListingColumn

use MagentoCatalogApiProductRepositoryInterface;
use MagentoFrameworkViewElementUiComponentContextInterface;
use MagentoFrameworkViewElementUiComponentFactory;
use MagentoUiComponentListingColumnsColumn;

class Products extends Column
{
protected $_ProductRepository;

public function __construct(
ContextInterface $context,
UiComponentFactory $uiComponentFactory,
ProductRepositoryInterface $ProductRepository,
array $components = ,
array $data =
) {
$this->_ProductRepository = $ProductRepository;
parent::__construct($context, $uiComponentFactory, $components, $data);
}

public function prepareDataSource(array $dataSource)
{
$fieldName = $this->getData('name');

if (isset($dataSource['data']['items'])) {
foreach ($dataSource['data']['items'] as &$item) {
$product = $this->_ProductRepository->getById($item["entity_id"]);
$item[$fieldName] = $product->getName();
}
}
return $dataSource;
}
}





share|improve this answer















Use Full Class path:
<item name="class" xsi:type="string">MagnetoPopupQuestionUiComponentListingColumnProducts</item>



Also verify either you are using Magento or Magneto.



<?php
namespace MagentoPopupQuestionUiComponentListingColumn

use MagentoCatalogApiProductRepositoryInterface;
use MagentoFrameworkViewElementUiComponentContextInterface;
use MagentoFrameworkViewElementUiComponentFactory;
use MagentoUiComponentListingColumnsColumn;

class Products extends Column
{
protected $_ProductRepository;

public function __construct(
ContextInterface $context,
UiComponentFactory $uiComponentFactory,
ProductRepositoryInterface $ProductRepository,
array $components = ,
array $data =
) {
$this->_ProductRepository = $ProductRepository;
parent::__construct($context, $uiComponentFactory, $components, $data);
}

public function prepareDataSource(array $dataSource)
{
$fieldName = $this->getData('name');

if (isset($dataSource['data']['items'])) {
foreach ($dataSource['data']['items'] as &$item) {
$product = $this->_ProductRepository->getById($item["entity_id"]);
$item[$fieldName] = $product->getName();
}
}
return $dataSource;
}
}






share|improve this answer














share|improve this answer



share|improve this answer








edited 14 hours ago

























answered 15 hours ago









Satish DubariyaSatish Dubariya

316112




316112













  • Class MagentoPopupQuestionUiComponentListingColumnProducts does not exist is coming

    – Ashish Ramchandani
    15 hours ago











  • Then you should write MagentoPopupQuestionUiComponentListingColumnProducts in class argument you passed in item. also namespace in your Products.php file has typo,

    – Satish Dubariya
    15 hours ago













  • no error is coming but the output does not come I want to display the product name through product id i have store product id

    – Ashish Ramchandani
    15 hours ago











  • Check my updated code

    – Satish Dubariya
    14 hours ago











  • what changes you have done i cannot see any change

    – Ashish Ramchandani
    14 hours ago





















  • Class MagentoPopupQuestionUiComponentListingColumnProducts does not exist is coming

    – Ashish Ramchandani
    15 hours ago











  • Then you should write MagentoPopupQuestionUiComponentListingColumnProducts in class argument you passed in item. also namespace in your Products.php file has typo,

    – Satish Dubariya
    15 hours ago













  • no error is coming but the output does not come I want to display the product name through product id i have store product id

    – Ashish Ramchandani
    15 hours ago











  • Check my updated code

    – Satish Dubariya
    14 hours ago











  • what changes you have done i cannot see any change

    – Ashish Ramchandani
    14 hours ago



















Class MagentoPopupQuestionUiComponentListingColumnProducts does not exist is coming

– Ashish Ramchandani
15 hours ago





Class MagentoPopupQuestionUiComponentListingColumnProducts does not exist is coming

– Ashish Ramchandani
15 hours ago













Then you should write MagentoPopupQuestionUiComponentListingColumnProducts in class argument you passed in item. also namespace in your Products.php file has typo,

– Satish Dubariya
15 hours ago







Then you should write MagentoPopupQuestionUiComponentListingColumnProducts in class argument you passed in item. also namespace in your Products.php file has typo,

– Satish Dubariya
15 hours ago















no error is coming but the output does not come I want to display the product name through product id i have store product id

– Ashish Ramchandani
15 hours ago





no error is coming but the output does not come I want to display the product name through product id i have store product id

– Ashish Ramchandani
15 hours ago













Check my updated code

– Satish Dubariya
14 hours ago





Check my updated code

– Satish Dubariya
14 hours ago













what changes you have done i cannot see any change

– Ashish Ramchandani
14 hours ago







what changes you have done i cannot see any change

– Ashish Ramchandani
14 hours ago




















draft saved

draft discarded




















































Thanks for contributing an answer to Magento Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f262254%2ferror-class-magneto-popupquestion-products-does-not-exist%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Polycentropodidae

Magento 2 Error message: Invalid state change requested

Paulmy