I am working on creating a custom extension for import export in magento2. For that I was going through magento2 import-export module. I found a function in file /vendor/magento/module-import-export/Model/Import.php protected function _getEntityAdapter() { if (!$this->_entityAdapter) { $entities = $this->_importConfig->getEntities(); if (isset($entities[$this->getEntity()])) { try { $this->_entityAdapter = $this->_entityFactory->create($entities[$this->getEntity()]['model']); } catch (Exception […]
Magento2
I am using Porto theme (header Type 1) with Magento 2.3.2 setup. I want to move Top Links section elements i.e : Sign in, Currency etc under the header content after the mini search bar. Here is the code that I am using : app/design/frontend/Smartwave/porto/Magento_Theme/layout/default.xml 1) The first line works […]
I expanded the Low stock report so that when a simple product is a component of a configurable, the configurable sku will appear as “Parent SKU” to the right of the simple product’s sku and name. The alias “parentsku” is being used for the “sku” field in the ‘catalog/product’ to […]
I want to make an external link that takes me to the product page with the reviews tab open but the tabs that are in the pdp have no id or class from where I can grab to do it … can anyone help me?
I want to add adjustment amount or fees in the credit memo refund using observer files and in observer file i have execute method, how can i set the adjustment fees while refunding the order?
I need to customize the message that is presented to the customer after his registration. I do not need to change only the message, but I need to show a different text if the user has checked a field in the registration form.
I want to get a list of all attributes. I know that domain.com/rest/V1/products/attributes/{{ATTRIBUTE_ID}}/options will grab an the attribute options, but how do i get a list of all attributes so I can know what all of the attribute_ids are? (I don’t really want to grab by attribute-set, I want all […]
I’m trying to build a flutter app from an existing magento store. How can I access the current REST API of the store? (I’m new to magento…)
What is the use of following vendormagentomodule-catalogetccommunication.xml file located in the catalog module in Magento 2? Is it doing updation for attribute update based on cron or will it require any additional some server-side components?