I have a module in which there are 2 custom grids and these two grids have the same crud functionality but different classes, but the inner logic is the same, how can I achieve this in a more optimized way? Note: Both grids have their own table and model classes […]
Magento
I have installed “cweagans” module and added patch configurations to composer.json file but when I run “comoser install” it’s not applying the patch and it’s not giving any error. Does anyone have any idea? I’m using Magento version 2.4.6 Regards
Could someone assist me in resolving this issue? I’ve created a custom attribute for customers, but when I attempt to save data from the admin panel for any customer, it doesn’t get saved. Here is the details --db_schema.xml <?xml version="1.0"?> <schema xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Setup/Declaration/Schema/etc/schema.xsd"> <table name="customer_entity"> <column xsi:type="varchar" name="dataprivacy_attribute" nullable="true" length="255" […]
I am using magento 2.4.4.p1 upgrade from 2.3 to 2.4.4-p1 i have some products in my site in that few are disabled few are enabled after upgradation i am trying to enable one product it enable but not showing in category page when i open direct URL it showing and […]
so i need to override this file vendor/magento/module-page-builder/etc/view.xml i already tried doing it by copying it here: app/design/frontend/My_Vendor/My_Theme/etc/view.xml and it works! but only on the frontend. i need the changes i made to reflect in admin as well, so i tried creating some folders with the same file here: app/design/adminhtml/My_Vendor/My_Theme/etc/view.xml […]
I have created “custom_column” in “sales_order” table and save the data using event observer.After some actions on that order again I need to change the value of my “custom_column” in a controller file. But When I use this code $order = $this->_orderRepository->get($orderId); $order->setData('custom_column', 'No'); $this->_orderRepository->save($order); But the value is not […]
How to reload cart item and cart summery data on cart page in Hyva theme or Alpine js ajax response.
I had these type of text in my pagebuilder’s HTML element : https://prnt.sc/dqb1EYcPIqgK but in frontend it is showing like this : https://prnt.sc/EGisDha1RV0k can anyone help me about this ?
I just called the custom method inside the knockout js initialize function to show the list of customers by default in my custom module. I can return the data, but I’m getting the error “Cannot read properties of undefined (reading ‘push’)“. Here is my code: define([ 'ko', 'uiComponent', 'mage/url', 'mage/storage', […]