Add Readonly field to ui component form Magento 2.

Using ui_component form.xml type, You can set a field with only Read-only or disabled access.

Field with read-only, Admin can’t able to edit a field in UI form. Continue reading “Add Readonly field to ui component form Magento 2.”

Get Backend Base Url in JS file Magento 2?

You can get base URL of the backend/admin panel in javascript(JS) file to fetch Custom URL of a site to call ajax request in backend area.

‘mage/url’ widget is not used to fetch backend base URL in Magento 2.

You need to create a template file using layout XML and define the base URL of the backend under the template file. Continue reading “Get Backend Base Url in JS file Magento 2?”

How to override cart/item/renderer/actions/edit.phtml template in Magento 2?

You can override cart/item/renderer/actions/edit.phtml file using layout XML way or directly add template file to the theme level under Magento_Checkout theme module.

  • Theme level Override,
app/design/frontend/<ThemePackage>/themename/Magento_Checkout/templates/cart/item/renderer/actions/edit.phtml

edit.phtml file used to display edit link for every cart item within the last column in cart table. Continue reading “How to override cart/item/renderer/actions/edit.phtml template in Magento 2?”