I am trying to add a new DocType that I don’t want to be “custom” however no matter what I do, the checkbox is disabled and checked. Looking at the forum, the common problems seem to be either the site isn’t in development mode or the user logged in isn’t an administrator. But neither of these are the case for me.
I have enabled developer mode as follows:
bench set-config -g developer_mode 1
And confirmed that the ~/frappe-bench/sites/common_site_config.json
file and my ~/frappe-bench/sites/site.local/site_config.json
files have it set to 1:
{
...
"developer_mode": 1
}
After changing this, I cleared the cache as such:
bench --site site.local clear-cache
And as good measure, in the web browser selected Reload from the menu. But still no luck. I then restarted my docker container to see if that did anything. No luck. I saw a comment somewhere else where someone recommended doing a bench build
but trying that didn’t do anything.
I pasted a screenshot below. It seems Frappe is recognizing it’s in developer mode because of the message it is displaying at the top. And I am logged in as an administrator. But I can’t get that custom checkbox to be enabled.
Is there something I am missing? Any suggestions on what else to try?