Conditional fields not being shown
NRDates are the dates, when chosen there should be conditional fields to display, are but none.
when trying to create new field, message comes with " the field already exists..."

    event is published
    conditional field should be something like nr15 or nr 16

    the problem is that we can not work with this non functional fields

    I'm also having issues with the conditional fields. The problem is that they are not getting the values for parent Id and level assigned in the dtregister_fields table ...
    If I manually assign the parent_Id and level then they will appear in the list.

      2borg
      You're right, there was changes in the database and these 2 conditional fields have parent_id set to 0 which caused issue.

      Here are steps:

      1- Go to database of your site - php-MyAdmin > SQL > run this query:

      SELECT `id` FROM `XYZ_dtregister_fields` WHERE `title` = 'root' 

      (XYZ is the prefix of your site's database)
      Then you can see the root ID

      2- Run another SQL query:

      update XYZ_dtregister_fields set parent_id = "ID_You_See_In_Step_1" where parent_id = 0 and `title` <> "root" 

      3- Go to Backend > DT Register > Field management > click the 'Rebuild' button for that field: https://prnt.sc/n7s3z7

      4- Check the conditional field again.

      Regards

        HI,
        I have a question regarding this query.
        shouldn't the parent ID be the id of the conditioned field instead of root field ?
        Because, I want my field to be shown only if the "parent" field is selected and my condition is fulfilled.

          it does not work
          look, this is getting very frustrating, & i am not shure that you do realize how much trouble you cause with this function not working? + these are the basics and the don´t work, any further comment is not necessary.

          so, take your time and FIX THIS!!

          PLS!

          saguaros

          miroslav-tunjic-gmail-com

          A weird issue on your site, our developer investigated further on this and found out the error:

          Fehler 429
          Zu viele Anfragen
          Der Client hat zu viele Anfragen in einem bestimmten Zeitraum gesendet.
          Mögliche Ursachen für diese Fehlermeldung finden Sie in den easyname FAQ.

          The conditional fields are loaded by Ajax, in server side, sometimes it returns this 429 error, could you plz contact your hosting provider for checking on this?

            You need to Login to view replies.