I am struck in finding the solution for the below requirements Assume drop down#1 and drop down#2 selection box in the Magento2 admin UI grid filters. If we select option in one drop down#1 then we have to filter option in drop down#2 based on drop down#1 selection value. If […]
Magento
I have done following plugin to filter the products by a custom attribute ‘promotion_on’, it works, but pagination does not reflect filtration (it shows full product lists’ (without filtration) product page links -all) <?php namespace IwdatCatalogExtPluginCatalogModelResourceModelProduct; class CollectionPlugin { /** * @param Collection $subject * @param bool $printQuery * @param […]
I have tried so many things but ftp_connect and ftp_ssl_connect are not working in my development instance. I am using MAC and PHP8.1, I am trying to connect to localhost with the below simple script: <?php // Connect to FTP server $ftp_server = "localhost"; // Establish ftp connection $ftp_connection = […]
Magento 2 how to setup Multi Website in PWA. I have total 3 website and one admin panel.So can you help me how to setup it. Thanks.
In en-US.csv file in our custom theme, I got a translation as below. "We'll email you an order confirmation with details and tracking info.","Within 10 minutes we'll send an email to you with your <strong>order number</strong> and complete details.<br />When your order ships we'll email tracking information to you." The […]
When an order comes in an invoice is created automatically and gets send out. I can also find that invoice when i click on the order. If I ship the order then, the shipment email goes out to the costumer but the process is still on processing in the order […]
I want to run some queries for reporting purposes and need to display the barcode of each product, but I cannot find it. I have followed the answer on the following post but I still cannot get the barcode. Where is bar-code product attribute column in database? I tried looking […]
I know that I can load a custom css in a particular phtml file using <link rel="stylesheet" type="text/css" href="<?= $this->getViewFileUrl('Custom_Module::css/source/file.css')?>"> I want to know how can I do this but using a _file.less Thanks!