Daily Archives: October 15, 2019
Does anyone know why after upgrading to Magento 2.2.9, we don’t see the Dashboard Graph? It seems really obvious but I can’t work it out and my searches on Google aren’t helping ЁЯЩБ Any help greatly appreciated Mike
We recently upgraded from 2.1 CE to 2.3 We are having a lot of issues with the catalog inventory tables in the database. All products in our store are set to “in stock” status. Cache is totally flushed, and I have reindexed multiple times. This is not a configuration issue. […]
I have been asked by a mobile dev to provide magento 2 API to create a single sign on application for my store. I have provided these info: тАв curl -X POST "https://example.com/rest/V1/integration/customer/token" -H "Content-Type: application/json" -d '{"username":"user@email.com","password": "password"}' token for above user : "ypilvsgqpfye3wkary6kkqkjpmsscfzxc" тАв curl -X GET "https://example.com/rest/V1/customers/me" […]
I’m creating a new attribute via install, this is the code: $installer = $this; $installer->startSetup(); // Add new Attribute group $groupName = 'Atributos'; $entityTypeId = $installer->getEntityTypeId('catalog_product'); $attributeSetId = $installer->getDefaultAttributeSetId($entityTypeId); $installer->addAttributeGroup($entityTypeId, $attributeSetId, $groupName, 0); $attributeGroupId = $installer->getAttributeGroupId($entityTypeId, $attributeSetId, $groupName); $installer->addAttribute("catalog_product", "prd_alto", array( 'group' => 'Atributos', 'label' => 'Alto Producto', 'input' => […]