How do I configure to open Explore on login in erpnext8?

Hi Community,

I want to configure my erpnext like disable desk page permanently moreover I want that open Explore Page on successful login instead of #desk.

Thanks.

@progShubham,

You will need to set the home_page to desk in the defaults, run the following commands to set the home_page

frappe.db.set_default('desktop:home_page', 'desk')
frappe.db.commit()

2 Likes

@makarand_b Thanks for your response.

Can you tell me where can I put above code?

Just run it from the the bench console:

bench --site sitename console

then run

frappe.db.set_default('desktop:home_page', 'desk')
frappe.db.commit()

@netchampfaris
Okay! Thanks. :slightly_smiling_face:

@netchampfaris
I tried the command but its not working.

I have to set desk#modules/Accounts page as my homepage ie after successful login, Accounts module will be show.

Thanks.