Aschroder_SMTPPro – need this one for magento 2
i want Aschroder_SMTPPro for magento 2 and wants to know weather it will be hyva compactible or not?
i want Aschroder_SMTPPro for magento 2 and wants to know weather it will be hyva compactible or not?
I have an issue on a Magento 2.4.4-p1 instance that appeared during the night somehow. The indexation process for inventory is not working anymore, as well as the category page which is not loading due to the following exception: 1… Read More »complex type ‘mixedDataType’: The content model is not determinist
Magento2 I am facing issue where my order status is getting changed to Pending even after I set the order status in this event sales_order_creditmemo_save_after How should I solve this? Any idea.
I have a index that adds eav values to products and it adds the correct values, these eav attributes are used to sort the product catalog, but this sorting is not correct, it started with a value of 0 or… Read More »Magento 2.4.0 Sorting by custom eav attribute
I’ve just installed Magento and tried to log into it as an admin. However, the Two-Factor Authentication message showed up: After a bit of looking up, I decided to disable the Two-Factor Authentication by setting ‘Magento_TwoFactorAuth’ => 0 in xampp/htdocs/magento2/app/etc/config.php… Read More »How do I disable Two-Factor Authentication properly?
Recently I’ve been unable to reindex Product Price (catalog_product_price) on Magento 2.4.6. When I run ‘php bin/magento indexer:reindex catalog_product_price’ from the CLI, I get the following output: SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your… Read More »Attempts to reindex catalog_product_price throws SQLSTATE[42000]: Syntax error or access violation: 1064 on Magento 2
After installing Magento2 I see the default page of Apache 2 and not that of Luma site. What could be the problem? Thanks so much for the support
I try to figure out where this.address() is defined in vendor/magento/module-checkout/view/frontend/web/js/view/shipping-address/address-renderer/default.js ? /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ ‘jquery’, ‘ko’, ‘uiComponent’, ‘underscore’, ‘Magento_Checkout/js/action/select-shipping-address’, ‘Magento_Checkout/js/model/quote’, ‘Magento_Checkout/js/model/shipping-address/form-popup-state’, ‘Magento_Checkout/js/checkout-data’, ‘Magento_Customer/js/customer-data’ ], function… Read More »Where is this.address() defined in vendor/magento/module-checkout/view/frontend/web/js/view/shipping-address/address-renderer/default.js?
I have 3 ways to update the product quantity. using product edit page in magento admin using magento API Using magento csv import I wanted to know while updating the qty of a product which method (above mentioned 3 methods)… Read More »How to identify which way the product qty was updated in magento 2
Use 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=”MagentoShippingControllerAdminhtmlOrderShipmentPrintAction” type=”CustomModuleControllerAdminhtmlShipmentPrintAction” /> </config> Use PrintAction.php <?php namespace SingsysFilenameShipmentControllerAdminhtmlShipment; use MagentoFrameworkAppResponseInterface; use MagentoFrameworkAppFilesystemDirectoryList; class PrintAction extends MagentoShippingControllerAdminhtmlOrderShipmentPrintAction { public function execute() { $shipmentId = $this->getRequest()->getParam(‘shipment_id’); if ($shipmentId) { $shipment = $this->_objectManager->create(MagentoSalesModelOrderShipment::class)->load($shipmentId); if… Read More »How to change of the packingslip pdf file name (Shipment) with the shipping ID generated from admin?