How to make the "Image View" the default view instead of "List View"

Hi @moroslantia,

Please apply a custom/client script for the listview.

frappe.listview_settings['Your DocType Name'].onload = function(listview) {
    window.location.href = "/app/your-doctype-name/view/image";
};

If the apply script then you can’t use listview.
If you are comfortable with it then use it.

Reference:

Thank You!

1 Like