[solved] “Add a custom field” button
-
Under the Custom Fields tab, clicking the button “Add a custom field” was not working, and generated the console error: TypeError: $(…).live is not a function.
The solution is to edit the file tabs.js (in the js directory), and change the following line:
From:
$(".cloneTableRows").live('click', function(){
To:__
$(".cloneTableRows").on('click', function(){
- The topic ‘[solved] “Add a custom field” button’ is closed to new replies.