We (almost) always use UPS for our shipments, so it would be nice for that to be the default dropdown menu option that is selected when we go into an order, click ship, and go to add tracking information. The current default is ‘Custom Value’. How/where in the code would […]
Daily Archives: June 26, 2023
Which Integrated Development Environment (IDE) is widely recommended for coding and development in Magento2? What are the key features and advantages of the suggested IDE in relation to Magento development? Are there any specific considerations or extensions/plugins that enhance the Magento development experience?
What is the role and necessity of Redis, Varnish, and Elasticsearch in a Magento 2 setup? Are these components required only in a server environment, or are they also needed in a local development environment?
I’m looking to understand the inventory management features in Magento 2. Can someone explain the different inventory options available in Magento 2 and how they can be utilized? Specifically, I’d like to know about the following: Stock management: How does Magento 2 handle stock management? Can it handle multiple warehouses […]
Is this my Installdata.php file <?php namespace AutosmartCategoryAttributesSetup; use MagentoCatalogModelCategory; use MagentoCatalogModelCategoryAttributeBackendImage; use MagentoCatalogModelCategoryAttributeSourceMode; use MagentoCatalogModelResourceModelEavAttribute; use MagentoEavModelEntityAttributeScopedAttributeInterface; use MagentoEavSetupEavSetup; use MagentoEavSetupEavSetupFactory; use MagentoFrameworkSetupInstallDataInterface; use MagentoFrameworkSetupModuleContextInterface; use MagentoFrameworkSetupModuleDataSetupInterface; class InstallData implements InstallDataInterface { private $eavSetupFactory; public function __construct(EavSetupFactory $eavSetupFactory) { $this->eavSetupFactory = $eavSetupFactory; } public function install(ModuleDataSetupInterface $setup, ModuleContextInterface $context) […]
I did search a lot and found nothing on this exact matter. I have a Synology DS2018J NAS with 2 disks 4GB each and EXT4 file system on both. I want to change the file system on both to BTRFS, and I have in mind this: deactive one disk format […]
I am on a Windows 10 Home machine (that has been updated over a Windows 7 Home edition years ago) with Intel Core i3-10105F and 32GB RAM. Since my HDD space is pretty full everywhere I have started to use compact.exe for most folders. Gain was usually very good with […]
I have a raspberry pi 4 4gb which I’ve been using for 3y, initially as a Plex server and now as a backup file server. I have this old zyxel nsa310 NAS device that works very well up until now, with a 6TB drive. I had previously mounted it with […]
I have csv file with cells that have values like 0:20.555 and 12:05.001. The format is mm:ss.sss where mm is minutes,ss.sss is seconds with thousandths of seconds. It is a duration, not time of day. A stop watch reading. How to convert it to seconds? So 0:20.555 is just 20.555 […]