Physical themes Magento changes to virtual theme when you change branch on git it is at 1 on the database it should be set to 0. /** * Checks all physical themes that they were not deleted * * @return $this */ public function checkPhysicalThemes() { $themes = $this->_collectionFactory->create()->addTypeFilter(ThemeInterface::TYPE_PHYSICAL); /** […]
Blog
I need to save and use several passwords for different accounts on AWS. The username is unhelpfully the same for each account. Unfortunately the MacOS Password App keeps adding a generic (regional) signin URL to the Passwords.app on my behalf. Here’s what happens: Go to https://my-co.signin.aws.amazon.com/console Add or select the […]
I’m currently troubleshooting my network and one of the things I noticed is forwarding ports on my router (this one: https://www.tp-link.com/en/home-networking/wifi-router/archer-c6/v4/) seems to work only if I enter Device IP of my printer, but doesn’t work on other devices it the same network. This rule: Screenshot of router config 1 […]
From my phone at work I can export a label.xml file that contains printable button labels for the phone. When I double click it in Windows Explorer, it opens in MS Edge though. Only via Right Click > Open With > Word I can get it to open in Word […]
I recently purchased a second-hand Samsung Book 4 Pro, but unfortunately, it is BIOS-locked. When I turn it on, I’m prompted to scan a QR code, which generates a 24-digit code. I tried using the website https://www.biosbug.com/, but they don’t seem to support a 24-digit code.
I’m running the following script in Powershell: start powershell @' $Host.UI.RawUI.BackgroundColor = "red" $Host.UI.RawUI.ForegroundColor = "black" [console]::WindowWidth=100; [console]::WindowHeight=30; Clear-Host cd application1backend npm run start '@ start powershell @' $Host.UI.RawUI.BackgroundColor = "blue" $Host.UI.RawUI.ForegroundColor = "white" [console]::WindowWidth=100; [console]::WindowHeight=30; Clear-Host cd application2backend npm run start '@ start powershell @' $Host.UI.RawUI.BackgroundColor = "yellow" $Host.UI.RawUI.ForegroundColor […]
Magento 2.4.6 // vendor/module-user-access-control-admin-ui/view/adminhtml/ui_component/customer_form.xml <form xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Ui:etc/ui_configuration.xsd"> <fieldset name="test_control"> <!-- Profile field --> <field name="profile" formElement="select" component="Vendor_UserAccessControlAdminUi/js/form/element/profile"> <argument name="data" xsi:type="array"> <item name="config" xsi:type="array"> <item name="filterOptions" xsi:type="boolean">false</item> <item name="multiple" xsi:type="boolean">false</item> </item> </argument> <settings> <label translate="true">Access profile</label> <elementTmpl>Vendor_UserAccessControlAdminUi/form/element/profile</elementTmpl> </settings> </field> <field formElement="checkbox" name="is_profile"> <settings> <dataType>boolean</dataType> <dataScope>is_profile</dataScope> <label translate="true">Is Profile</label> <notice translate="true">Check this […]
I need to edit titles, meta descriptions, etc. for my products, but there is no “Search Engine Optimization” section under the products. It shows up under Categories and other pages, but not products. Catalog>Products>Edit brings me to the page where it should be, but it is not there. There is […]
On specific categories (not all of them), when switching between store views for products, I am getting 403 Forbidden (Nginx). This only happens for products, not categories. Following the debugging process, I found out that the problem comes from the “uenc” parameter (vendor/magento/module-store/App/Response/Redirect.php > _getUrl() method) which is not returning […]