how to add custom css for a specific admin role in admin
I want to add some custom css for all of the admin pages for a specific admin role. I tried some methods but none of them worked.
Auto Added by WPeMatico
I want to add some custom css for all of the admin pages for a specific admin role. I tried some methods but none of them worked.
Suddenly my Magento 2.4.6 started to show a JS issue without any deployment. I had this issue below with the JavaScript loading. How could I solve it?
I have my custom module in that I generate invoice automatically but when I reorder order from backend side that getting this kind of error “Order saving error: Rolled back transaction has not been completed correctly. “ here is my… Read More »Error on Reorder time create invoice automatically from backend in Magento 2?
I want to create an admin select list of product attributes that have the storefront property ‘Use for Promo Rule Conditions’ Does anyone know how to do this?
How to sort export csv file according to desc order by the creation time <exportButton name=”export_button”/> <exportButton name=”export_button”/> <paging name=”listing_paging”/> </listingToolbar> <columns name=”thecoachsmb_blog_post_columns”> <selectionsColumn name=”ids”> <settings> <indexField>customer_feedback_id</indexField> <resizeEnabled>false</resizeEnabled> <resizeDefaultWidth>55</resizeDefaultWidth> <visible>false</visible> </settings> </selectionsColumn> <column name=”post_id”> <settings> <filter>textRange</filter> <label translate=”true”>ID</label> <sorting>desc</sorting> </settings>… Read More »export csv sort according to desc creation time
I want to make my columns in admin resizable. This is not working. <resizeEnabled>true</resizeEnabled> <resizeDefaultWidth>150</resizeDefaultWidth> <column name=”title”> <settings> <filter>text</filter> <editor> <validation> <rule name=”required-entry” xsi:type=”boolean”>true</rule> </validation> <editorType>text</editorType> </editor> <label translate=”true”>Title</label> <resizeEnabled>true</resizeEnabled> <resizeDefaultWidth>150</resizeDefaultWidth> </settings> </column>
This is a duplicate question of Magento 2.x – Menu not showing for custom role in custom module but I can’t seem to figure out how… I have setup ACL rules for this but it is not showing Menu of… Read More »Menu not showing for custom role in custom module
I want to remove or hide this without affecting the export csv. How? <selectionsColumn name=”ids”> <settings> <indexField>k_id</indexField> <resizeEnabled>false</resizeEnabled> <resizeDefaultWidth>55</resizeDefaultWidth> </settings> </selectionsColumn>
I want to set & save the hidden product image( Hide from Product Page ) programmatically in Magento 2 in admin panel? I tried this way $product = $this->productLoader->create()->load($productId); $mediaAttribute = array (); $productImage = ‘/Applications/MAMP/htdocs/magento245p1v1/pub/media/catalog/product/W/S/WS03-XS-Red_1219111980.jpg’; $product->addImageToMediaGallery($productImage, $mediaAttribute, false, false);… Read More »How to save hide image programmatically in magento 2 admin product edit?
I have an admin ui component form, one of the elements I’m using is checkboxset. The checkboxset seems be a bit of a ghost in core code, and documentation. When I implement the checkboxset like this (manual adding options like… Read More »How to pass options from class to admin form ui component checkboxset