Skip to content

magento man

Magento 2 InsertForm component in to the UI form component not show form buttons

I added form to admin modal with InsertForm UI component based on documentation. https://developer.adobe.com/commerce/frontend-core/ui-components/components/insert-form/ Unfortunately this not show the form buttons. If I change the InsertForm component’s renderUrl param to mui/index/render_handle as writes the documentation, the form not show. VendorOrderMapviewadminhtmlui_componentorder_map_form.xml… Read More »Magento 2 InsertForm component in to the UI form component not show form buttons

i need to create a observer that will change all products prices on category page

this is my events.xml code <?xml version=”1.0″ encoding=”UTF-8″?> <config xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xsi:noNamespaceSchemaLocation=”urn:magento:framework:Event/etc/events.xsd”> <event name=”catalog_product_price_change”> <observer name=”product_collection” instance=”ObserverPriceObserverProduct”/> </event> <event name=”product_price_change”> <observer name=”set_custom_price” instance=”ObserverPriceObserverProduct” /> </event> </config> this is my ObserverToChangePrice.php code : <?php namespace ObserverPriceObserver; use MagentoFrameworkEventObserver as EventObserver; use MagentoFrameworkEventObserverInterface;… Read More »i need to create a observer that will change all products prices on category page