Turn off Popups in DNN 9
The setting to turn popups off in DNN 9 was removed.
In DNN 9 the popup modal window that opens when you edit content, click on the login or register token, etc. was removed from the UI. See how to enable or disable this with an SQL query.
Requirements: Host Level Access
SQL Query: Enable / Disable DNN 9 Modal Popup Windows
UPDATE {databaseOwner}[{objectQualifier}PortalSettings]
SET SettingValue = 'False'
WHERE SettingName = 'EnablePopUps' and PortalID = 0
select * from {databaseOwner}[{objectQualifier}PortalSettings]
Video Tutorial
View Video