Tag: magento
-
Installing Magento Common Issues
Following are the steps to complete install Magento error-free:- Uncomment the files which are required by Magento in php.ini and restart the server If installation error occurs, set memory_limit = 786M if still error occurs, uninstall the db and make it again after successfull install, go to (root_directory)app/etc/di.xml and change “Symlink” to “Copy” in developerMaterialization section.…
-
Bulk Add Custom Attribute Options in Magento 1
-
Magento 2 – How to manage multi domain website store setup URLs
-
[SOLVED] Magento 2 Error: A technical problem with the server created an error. Try again to continue what you were doing. If the problem persists, try again later.
Sometimes debugging on Magento can be annoying, specially if something just arises out of the blue, not while you are actually writing a code. This is something that occurs on Magento admin panel. As of now, it can be one out of 3 reasons, let us discuss them: 1. Admin Password Try to change admin…
-
Magento 2 : How to fix tablespace for table exists | base table or view already exists
Fixing General error: 1813 Tablespace for table xx Please DISCARD the tablespace before IMPORT and SQLSTATE[42S01]: Base table or view already exists Recently I encountered this error while upgrading an extension on Magento 2.2.2 The error was When I tried to fix the above error, I received: So here is how to fix it: Important…
-
Remove sku column from Magento 2 invoice and pdf
Edit the file/vendor/magento/module-sales/Model/Order/Pdf/Items/Invoice/DefaultInvoice.php Inside function draw(), remove/comment following code: To remove the SKU header in table header, edit the file/vendor/magento/module-sales/Model/Order/Pdf/Invoice.php and copy the file vendor/magento/module-sales/view/frontend/templates/email/items/order/default.phtmlto app/design/your/theme/Magento_Sales/templates/email/items/order/default.phtmland remove the code
-
Magento 2 temporary fix for Alphabetical sorting of Configurable product options
Just re-write the file vendor/magento/module-configurable-product/Model/ConfigurableAttributeData.php
-
Show Available Stock quantity for each product in Magento 2
Reference: https://magento.stackexchange.com/a/97952/32283
-
How to shift category description below products in Magento 2
In your theme folder, add Folder Magento_Catalog/layout and in layout folder add file catalog_category_view.xml
-
How to manage Magento 2 product attribute values options using console
This is an update to my previous script which was used to add custom product attribute values using backend – Add values to product attribute Read the previous^ part to get introduction about how it works. you will have to use browser console (ctrl + shift +j in Google chrome) First of all initialize the…