• trying to setup a new custom table (Custom tables -> Create table ) and clicking on “Add new Field” jscript returns an error (I saw it using Firebug):

    NotFoundError: Node was not found
    document.forms[0].insertBefore(newFieldContainer,nFloor);

    http://wordpress.org/plugins/custom-tables/

    I investigated and found a collision with ‘Debug Bar Console’ plugin,
    that define a form above that of this plugin.
    Probably you should address your form using an ID rater than document.forms[0]

Viewing 4 replies - 1 through 4 (of 4 total)
  • I get the same error

    document.forms[0].insertBefore(newFieldContainer,nFloor);

    in the insertField() function

    Did you fix?

    Thread Starter faina09

    (@faina09)

    sorry I solved just disabling the conflicting ‘Debug Bar Console’ plugin, expecting the owner do the fix.

    You can fix this within the PHP code in the file:

    /custom-tables/pages/setup_table.php : line 485

    from:
    document.forms[0].insertBefore(newFieldContainer,nFloor);

    to:
    document.getElementsByName('wctform')[0].insertBefore(newFieldContainer,nFloor);

    This will target the form specifically (as faina09 mentioned above) and adds the extra fields.

    Fix from gbeebe as described above works – Thanks.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘impossible to add fields’ is closed to new replies.