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)

File diff suppressed because one or more lines are too long

View File

@@ -2699,7 +2699,10 @@ function ShowSettings( element ) {
//hide field and form pagination setting fields
jQuery( '.field_setting' ).hide();
jQuery( '.pagination_setting' ).hide();
jQuery("#gfield_post_category_initial_item_container").hide();
jQuery("#gfield_min_strength_container").hide();
// Show last pagination setting fields
fieldObject = GetSelectedField();
jQuery( '.last_pagination_setting' ).show();
var label = jQuery( '#gform_last_page_settings' ).data( 'title' );
var description = jQuery( '#gform_last_page_settings' ).data( 'description' );
@@ -2742,6 +2745,7 @@ function ShowSettings( element ) {
var icon_img = $button_icon.find( 'img' );
var icon_classes = $button_icon.children().attr( 'class' );
}
// Show field icon and description in sidebar
jQuery( '#nothing_selected' ).hide();
jQuery( '#sidebar_field_label' )

File diff suppressed because one or more lines are too long