Daily Archives: March 26, 2025
In magento layered navigation. There is a filter by category in category listing page. How can we show the selective filters up there? I mean if there are: Category 1 Category 2 Category 3 And i need to hide the specific category IDs to show up there. OR i want […]
Our catalog search was getting very slow. Upon investigation, we discovered the search_query table had over 600k records… There doesn’t appear to be a cron to clean this up. Truncating the table seems to be one “solution”, but I’m wondering if this is a good idea / the best way […]
I’ve created a custom product chooser for a client that uses the modal popup and product grid. (the example data was added manually to the database). The “Add Products” button works and opens up the modal window so the user can select products. When the “Add Selected Products” button is […]
[ERROR] Failed to load the "ui/dynamic-rows/templates/grid" template requested by "product_form.product_form.configurable.configurable-matrix"
<?php namespace CBCdnImagePlugin; use MagentoCatalogHelperImage; class ProductImageCdn { const CDN_BASE_URL = 'https://cdn.yourstore.com/media/catalog/product/'; public function afterGetUrl(Image $subject, $result) { // Only modify product image URLs, not CMS/static images if (strpos($result, '/catalog/product/') !== false) { return str_replace('/media/catalog/product/', self::CDN_BASE_URL, $result); } return $result; } } I have actually made custom way to call […]
I am somewhat new to the motherboard bios side of the computer world and I was in my bios of my computer and came across the setting for intel’s TxT (Intel Trusted Execution Technology). The setting was disabled but there was an option to enable and set to default, I […]
Ok, that’s a tuff one but i don’t know where else to ask. I’ve been using Asprotect for a long time, to encrypt my EXE files and avoid being cracked. It worked very well so far. But with the newer Windows 11 ARM machines becoming more popular, i’ve noticed that […]
I’m wanting a way to automate (e.g. via Scheduled task running a PowerShell script) copying a file from a Windows server environment (accessible via Remote App) to a SFTP location. Scenario background – ERP software running on a Windows Server (on AWS) exports a daily report in csv format to […]