• smateus

    (@smateus)


    WordPress 6.0.3
    RD MKT and RD CRM.

    When accessing “RD Station CF7” and editing the integration, the fields do not show up. Accessing Developer Tools I got this error:

    custom_fields.js?ver=6.0.3:4 Uncaught TypeError: Cannot read properties of null (reading 'value')
         at RDSMCustomFields.checkAuthenticationRDSM (custom_fields.js?ver=6.0.3:4:65)
         at load (custom_fields.js?ver=6.0.3:130:16)

    This is the function:

    function RDSMCustomFields() {
    
      this.checkAuthenticationRDSM = function() {
        var rd_form_nonce = document.getElementById("rd_form_nonce").value;
        jQuery.ajax({
          url: ajaxurl,
          method: 'POST',
          data: { 
            action: 'rdsm-authorization-check',
            rd_form_nonce
          },
          success: function(data) {
            if (data.token) {
              displayConnectedAccountElements();
              loadMappingFields();
            } else {
              displayDisconnectedAccountElements();
            }
          }
        });
      }

    I already re install the plugin, remove permission in RDStation, all the integration are working, but I can’t edit any of them.

  • The topic ‘integration fields not show up’ is closed to new replies.