Skip to content

magento2.4

Auto Added by WPeMatico

How to pass value of custom dynamicRows select field in category_form.xml

I want to save the data in of a custom dynamicrows field. which i added on admin category page. my custom_form.xml: <?xml version=”1.0″?> <form xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xsi:noNamespaceSchemaLocation=”urn:magento:module:Magento_Ui:etc/ui_configuration.xsd”> <fieldset name=”general”> <dynamicRows name=”dynamic_rows”> <settings> <addButtonLabel translate=”true”>Add Record</addButtonLabel> <additionalClasses> <class name=”admin__field-wide”>true</class> </additionalClasses> <componentType>dynamicRows</componentType> </settings>… Read More »How to pass value of custom dynamicRows select field in category_form.xml

Custom Product Filter GraphQl Not working in magento 2.4

I want to add a stock filter for the product search GraphQl query. check below my code schema.graphqls input ProductAttributeFilterInput @doc(description: “Defines the filters”){ stock_status: FilterEqualTypeInput } di.xml <virtualType name=”MagentoCatalogModelApiSearchCriteriaCollectionProcessorProductFilterProcessor” type=”MagentoEavModelApiSearchCriteriaCollectionProcessorFilterProcessor”> <arguments> <argument name=”customFilters” xsi:type=”array”> <item name=”stock_status” xsi:type=”object”>CustomModuleModelResolverProductsSearchCriteriaCollectionProcessorFilterProcessorCustomStockFilter</item> </argument> </arguments>… Read More »Custom Product Filter GraphQl Not working in magento 2.4