plugin updates

This commit is contained in:
Tony Volpe
2024-08-07 16:35:46 +00:00
parent 8734babf54
commit 36dc023d6d
195 changed files with 11094 additions and 2509 deletions

View File

@@ -505,6 +505,11 @@ function GetFieldById( id ) {
if ( 'submit' === id ) {
return GetSubmitField();
}
if ( 'last_page_settings' === id ) {
return { type: 'page' }
}
id = parseInt( id );
for(var i=0; i<form.fields.length; i++){
if(form.fields[i].id == id)