Install magento 2 extension without ssh
I need to install several extensions. I don't have SSH to that host so I need to be able to do everything with FTP + magento 2 backend. So far I've copied the extension files on the /app/ dir. Looking…
I need to install several extensions. I don't have SSH to that host so I need to be able to do everything with FTP + magento 2 backend. So far I've copied the extension files on the /app/ dir. Looking…
I recently discovered the site I am developing in Magento 2 is missing the Postcode field in the Shipping Address form on the checkout page. I have been digging around and cannot find any reason why it is missing. I…
Hallo everyone, since the release of Magento 2.2 the old override Zend_Mail_Transport_Sendmail does not work anymore. before, an rewrite in etc/di.xml and model/Transport.php worked. <preference for="MagentoFrameworkMailTransport" type="MyModulMyPluginModelTransport"/> and namespace MyModulMyPluginModel; class Transport extends Zend_Mail_Transport_Sendmail implements MagentoFrameworkMailTransportInterface { protected $_message; /**…
I have problem with getting attribute value in new_grid.phtml. If i make it like this: <?php $_product = $block->getProduct() echo $_product->getData('attr_name') ?> Page generating to this place, and after just blank page. Please show me other option, or maybe i…
I migrated magento site from 1.7.0.2 to 2.2 clean install. Migration completed without issues. However if I attempt to edit a product or add a new product magento displays an error: Unable to unserialize value. Does anyone know what im…
I tried importing a single product in magento 2..It failed.. I tried a script in magento 2 root directory and My code is <?php use MagentoFrameworkAppBootstrap; require __DIR__ . '/app/bootstrap.php'; $params = $_SERVER; $params[Bootstrap::PARAM_REQUIRE_MAINTENANCE] = true; // default false $params[Bootstrap::PARAM_REQUIRE_IS_INSTALLED]…
I'm trying to custom the default Magento 2 search engine. I would like to automatically redirects to the product page when search returns only one result. I tried to override the Result/Index controller but nothings worked. Thanks for your help…
I need to Add Credit Card details in to Vault Programmatically (BrainTree) in Magento 2.1.5 Basically what i want is After LoginIn there will be a separate section for Saved Cards . In that Customer is used to Add/edit/delete All…
I have a problem when applying magento 2.1.9 to my project. My attribute is ab_size I have created that attribute with code blow. $categorySetup = $this->categorySetupFactory->create(['setup' => $setup]); $entityTypeId = $categorySetup->getEntityTypeId(MagentoCatalogModelProduct::ENTITY); foreach ($singleAttributeCodes as $key => $label) { $categorySetup->removeAttribute($entityTypeId, $key);…
I'm developing a procedure that has to programatically create shipment for orders that are already paid and invoiced. The problem is that even after creating the shipment, the order status remains to 'processing' instead of going to 'complete'. This does…