Git Product home page Git Product logo

Comments (1)

MaiklT avatar MaiklT commented on August 23, 2024

Thank you for pointing this out. I could reproduce that behaviour and will fix it in the next version.

As a workaround I can provide the following SQL Scripts that you can use in Settings :: SQL Console:

(to find the ModuleID):

SELECT
   m.ModuleID,
   tm.ModuleTitle,
   t.TabName,
   t.TabPath
FROM
   {databaseOwner}{objectQualifier}Modules m
   INNER JOIN {databaseOwner}{objectQualifier}ModuleDefinitions md ON md.ModuleDefID = m.ModuleDefID
   INNER JOIN {databaseOwner}{objectQualifier}TabModules tm ON tm.ModuleID = m.ModuleID
   INNER JOIN {databaseOwner}{objectQualifier}Tabs t ON t.TabID = tm.TabID
WHERE
   md.DefinitionName = 'Survey'

(to set "Show closing date message" off - replace XYZ with the ModuleID):

DELETE FROM {databaseOwner}{objectQualifier}ModuleSettings
WHERE ModuleID = XYZ AND SettingName = 'ShowClosingDateMessage'

(to set "Add consent checkbox?" off - replace XYZ with the ModuleID):

DELETE FROM {databaseOwner}{objectQualifier}ModuleSettings
WHERE ModuleID = XYZ AND SettingName = 'PrivacyConfirmation'

Please restart the application pool after you ran any of those two scripts (under Settings :: Server, click the "Restart Application" button on the top, or recycle the application pool in IIS manager).

When you still see the message and/or the consent checkbox refresh the page - it should be gone.

from dnn.survey.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.