I have created plugin for UpdateItemQty controller. UpdateItemQty.php: <?php /** * @author Ronak Chauhan */ namespace MyModuleCheckoutPluginControllerCart; use Closure; use Exception; use MagentoCheckoutControllerCartUpdateItemQty as ParentClass; use MagentoCheckoutModelCartRequestQuantityProcessor; use MagentoFrameworkAppRequestInterface; use MagentoFrameworkSerializeSerializerJson; use MyModuleCheckoutHelperData; class UpdateItemQty { /** @var Json */ protected $json; /** @var Data */ protected $helper; /** @var […]
Yearly Archives: 2021
When customers attempt to create an account they are currently seeing “Please enter 7 or more characters, using both numeric and alphabetic.” as the password validation error message. I have already changed the validation via regular expression to 8 or more characters containing at least 1 number, 1 uppercase, and […]
How can I show image thumbnail (edit form) for dynamic rows created by Magento’s Row Pattern using Data Provider / Modifier. Like this link: Magento2 How to add row pattern/dynamic rows to the custom product attribute My data saved in database as json format like below: [{“record_id”:”0″,”repairby”:”1″,”note”:”good”,”start_date”:””,”est_date”:””,”callback_date”:””,”hours_worked”:”4″,”image”:[“Screenshot from 2021-05-17 15-58-43.png”,”Screenshot […]