When I run php bin/magento indexer:reindex I get the following error message from the Catalog Search indexer: {"error":{"root_cause":[{"type":"mapper_parsing_exception","reason":"analyzer [sku] not found for field [sku]"}],"type":"mapper_parsing_exception","reason":"analyzer [sku] not found for field [sku]"},"status":400} I have checked that elasticSearch 7 is connected and running. I have disabled a search autocomplete plugin (https://www.mageworx.com/magento-2-search-autocomplete-free.html) and that […]
Magento
So i need that the values of my summary update when the user click on the “ship here” button that makes the user change the shipping adress. If i proceed to the next step (reviews and payments) the tax and the values update corresponding to the shipping adress that the […]
I was working in my website built with Magento 2 and i noticed that the structure is working fine in desktop but in cellphone it is not organized as i want it. Is there a way to edit the structure for cellphone from the Magento Admin Control Panel?
I have created a custom API endpoint and I have defined ACL for it. My API is working fine without ACL and I am able to post the data through API. But after defining the ACL now I need to receive the token and then make my POST request along […]
I am trying to create a new extension attribute for the order API but I keep getting “does not have accessor method getRepeatOrder” error when I call the API endpoint. This is how I currently have things setup. Vendor/Module/etc/extension_attributes.xml <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Api/etc/extension_attributes.xsd"> <extension_attributes for="MagentoSalesApiDataOrderInterface"> <attribute code="repeat_order" type="VendorModuleApiDataRepeatOrderInterface"/> </extension_attributes> </config> Vendor/etc.di.xml […]
I have tried to import a csv of the new prices and that doesn’t work for me I just get an error. All I have found in my own searching is just expensive extensions
I am creating a custom api endpoint to receive some data in json format. This is my module’s code webapi.xml <?xml version="1.0" ?> <routes xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Webapi:etc/webapi.xsd"> <route url="/V1/matrid-nextapi/orders" method="POST"> <service class="MatridNextApiApiOrdersManagementInterface" method="postOrders"/> <resources> <resource ref="anonymous"/> </resources> </route> di.xml <?xml version="1.0" ?> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd"> <preference for="MatridNextApiApiOrdersManagementInterface" type="MatridNextApiModelOrdersManagement"/> </config> Api/OrdersManagementInterface.php <?php […]
Hi all I’m doing a report where I need to filter data. I have 2 uicomponents, 1 form and 1 listing/grid. Basically I need the form to filter the listing, but I don’t know if I can accomplish this by using listingInsert. Or do I need to add that on […]