Backend development often requires writing many lines of code that handle CRUD, authorization and business logic. All this code needs to be tested, debugged and maintained during the entire lifetime of the project. This takes a lot of time that developers can be using to develop new features. In this […]
Daily Archives: December 1, 2021
I’m working with Magento 1.9 and I’m having a problem with multi-store catalog promotion, since I have a category that is being displayed in 2 stores, and I created a catalog promotion for each store, with the view of Store 1 (Verejo) the catalog promotion works (30% discount on the […]
I want to create a custom layout for one or more categories. I followed the next steps: Extended and customized <theme_dir>Magento_Cataloglayoutcatalog_category_view.xml (layout instructions work fine) Created the custom layout <theme_dir>Magento_Themepage_layoutcustom-category-layout.xml custom-category-layout.xml <?xml version="1.0"?> <layout xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_layout.xsd"> <update handle="1column"/> <body> <referenceBlock name="footer" remove="true" /> </body> </layout> Then added the layout in […]
I am using a theme purchased for my magento site and therefore have the onepage checkout. I would like to add the general conditions of sale on the last part but I cannot modify the template xml file. When I add the code to display the checkbox, the purchase tunnel […]
Is it possible to sort the output of the modules node in config.php alphabetically? This way git versioning won’t get messed up since Magento sometimes changes the sorting. <?php return [ 'modules' => [ 'Magento_ModuleA' => 1, 'Magento_ModuleB' => 1, 'Magento_ModuleC' => 1, ... composer.json has an option for it, […]
on Magento backend admin can create a new order on behalf of the customer. Admin can also set a custom price for each item by clicking on the “custom price” checkbox right under the price. I’m trying to recreate the same feature for the cart quote instead of an order, […]
My aim is convert decimal number to binary numbers and putting binary numbers one by one per column in EXCEL. I did convert decimal to binary using BASE command and do not know how to put it one by one in columns. Here is the picture that I want to […]
There is a surveillance system with one sata input, there are several hard drives that I would like to connect through this port with that sata hub After a careful reading I came to the conclusion that this connection requires a pci-e raid controller, but there is no pci-e on […]
VS Pro 2019 Version 16.11.5 Resharper Ultimate 2020.1.4 In VS2017, with an earlier version of Resharper, I would see two sets of context menu options for debugging/running tests when I right click on a test class or test method. One Run/Debug set was to run the test(s) using VS test […]