I’m trying to follow the guide https://developer.adobe.com/commerce/php/development/components/add-admin-grid/ to add a custom admin grid however I’m stuck in a situation where there’s no error and the spinner keeps loading forever without loading the grid. Log files system.log, debug.log, exception.log are empty Javascript console only shows this clean of errors screen Finally […]
Yearly Archives: 2023
I have a video file with 2 audio tracks. I wish to utilize a single ffmpeg operation to have a video with: Merged audio Audio #1 Audio #2 With this I can merge the audios, ending up with video with a single merged audio track: ffmpeg -i "myvideo-with-2-audio-tracks.mkv" -c:v copy […]
I have a 3TB drive that I’ve already bought a replacement for, but I was planning to cover part of the replacement’s cost by selling the 3TB drive. A few days ago this drive started clicking and beeping, which sounded like a power issue and seems to have been resolved […]
I’m unable to get all 3 of my monitors to detect on a new computer build. Last night I had all 3 working by plugging 2 into display ports and 1 into HDMI, but this morning I tried to change out the HDMI for another display port and rearrange the […]
I have a PDF file created from a Microsoft Word document that contains a block: 20 0 obj << /Author (^P=4@59 ^S025=:>) /Producer (Microsoft: Print To PDF) /Title (Microsoft Word - ^T>:C<5=B1) >> endobj I suppose this is Microsoft Word metadata. This is not a part of the info dictionary […]
I’m new to mIRC script programming. I’m programing a mIRC sript which open a windows every time a user (nick) open a private chat with my user(nick), I would like to have in this window the oportunity of rejecting the private, I’ve writen the next script in the remote script […]
tried different solutions here which I found, but none of them is working for me. I want to add two custom options to a product with the code below. Problem is, that there is always only the second option added to the product and I do not know why. As […]
Trying to hide DIV if another DIV is active or visible with css/js. Basically if an item is out of stock I would like to hide my custom div. <script type="text/javascript"> require(['jquery'], function(jquery) { jquery(document).ready(function(){ if(document.getElementByClass("stock.unavailable").style.visibility == "visible") { document.getElementByClass("left-stock").style.visibility = "hidden"; } }); }); </script>
I want to implement BFCache into Magento but did not find the proper resources for implementing it using a custom module. BFCache: https://web.dev/articles/bfcache Can anyone guide me on how to do it?