Magento2 how to display video as a thumbnail image in admin grid
I want to display video as a thumbnail in the custom admin grid. you can get the reference from the below screenshot. https://i.imgur.com/UTBHZvM.png
I want to display video as a thumbnail in the custom admin grid. you can get the reference from the below screenshot. https://i.imgur.com/UTBHZvM.png
I have used below event to stop Invoice email notification that is triggered after the invoice creation. Vendor/Module/etc/events.xml <?xml version=”1.0″?> <config xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xsi:noNamespaceSchemaLocation=”urn:magento:framework:Event/etc/events.xsd”> <event name=”sales_order_invoice_save_after”> <observer name=”stop_invoice_email_sending” instance=”VendorModuleObserverStopInvoiceEmail” /> </event> </config> Vendor/Module/Observer/StopInvoiceEmail.php <?php namespace MindtreeBilldeskObserver; use MagentoFrameworkEventObserver; use MagentoFrameworkEventObserverInterface; use… Read More »Prevent invoice email notification after invoice creation in Magento 2
I have a form with the following 2 fields in an xml file: Regions: <field formElement=”select” name=”regions” > <argument name=”data” xsi:type=”array”> <item name=”config” xsi:type=”array”> <item name=”dataType” xsi:type=”string”>text</item> <item name=”label” xsi:type=”string” translate=”true”>Regions</item> <item name=”formElement” xsi:type=”string”>select</item> <item name=”component” xsi:type=”string”>Vendor_MyModule/js/form/element/ui-select</item> <item name=”elementTmpl” xsi:type=”string”>ui/grid/filters/elements/ui-select</item>… Read More »Update selector field in Magento 2
After i removed the standard .html URL prefix from all URL’s, the mageplaza ajax search module doesn’t work propperly anymore. It shows me the right products but is linked to the old .html url. Response is 404. I tried to… Read More »Mageplaza Ajax search not working after remove .html prefix
We are experiencing some major issues with reindex lately. We think it has something to do with the 3rd party module (we can’t turn it off) We get deadlock during re-indexing every day. And ofc that causes tons of issues.… Read More »Magento 2.4.3 index issue – Deadlock
I have created a module to extend the Tier Pricing template, but the getPrice() is not returning anything therefore the tier pricing array is always null Any hint is appreciated. Here is my layout XML: custom_catalog_product_prices.xml <?xml version=”1.0″?> <!– /**… Read More »M2.4.6 – Unable to extend Tier Pricing Template
I have categories with Url Rewrites Rules. For example, base url for category MyTest = /mytest. But with rewrite rule url = /new-mytest. If I use MagentoCatalogModelResourceModelCategoryCollectionFactory – I get base url (/mytest). How can I get finally url for… Read More »Get category URL with Url Rewrites Rules by Category ID
What is the reason behind the error as below: Compilation from source: LESS file is empty: frontend/vendor/theme/en_GB/css/style.less I am using a custom theme that inherits from the default blank theme. This error is getting logged in the exception.log file on… Read More »Compilation from source: LESS file is empty
i’m using Magento 2.4.1 and i add custom validation with a custom error message to detect which character is wrong and add it to the message: define([ ‘jquery’ ], function ($) { return function () { var validator = this;… Read More »Magento 2 – Dynamic custom validation error message not working