pods-framework / pods

The Pods Framework is a Content Development Framework for WordPress - It lets you create and extend content types that can be used for any project. Add fields of various types we've built in, or add your own with custom inputs, you have total control.
https://pods.io/
GNU General Public License v2.0
1.07k stars 264 forks source link

Generating post titles from pods fields via pods_api_pre_save_pod_item_podname Is not working since 3.0 #7195

Closed CloundNine closed 11 months ago

CloundNine commented 1 year ago

Description

PHP functions that previously worked to automatically assign post titles and slugs via pods_api_pre_save_pod_item_podname no longer word. Posts are saved as Auto Draft.

Roll back to Pods 2.9.19 solves issue.

Version

3.06

Testing Instructions

This is the function in question - most recent site. I have experienced this on a half a dozen installations.

/**
 * Set the title of a custom post type Pod, based on the value of other fields, in this case the field "event_date and text_location" in the Pod "date"
 *
 * This function only acts when a new item is created, but can be modified to act on all saves.
 */
add_filter( 'pods_api_pre_save_pod_item_date', 'slug_set_title', 10, 2);
function slug_set_title($pieces, $is_new_item) {
    /*//check if is new item, if not return $pieces without making any changes - KK - this section was breaking the rest of the code
    if ( ! $is_new_item ) {
        return $pieces;
    }*/
    //make sure that all three fields are active
    $fields = array( 'post_title', 'event_date', 'text_location' );
    foreach( $fields as $field ) {
        if ( ! isset( $pieces[ 'fields_active' ][ $field ] ) ) {
            array_push ($pieces[ 'fields_active' ], $field );
        }
    }
    //set variables for fields empty first for saftey's sake
    $event_date = $text_location = '';
    //get value of "event_date" if possible
    if ( isset( $pieces[ 'fields' ][ 'event_date' ] ) && isset( $pieces[ 'fields'][ 'event_date' ][ 'value' ] ) && is_string( $pieces[ 'fields' ][ 'event_date' ][ 'value' ] ) ) {
        $event_date = $pieces[ 'fields' ][ 'event_date' ][ 'value' ];
    }
    //get value of "location" if possible
    if ( isset( $pieces[ 'fields' ][ 'text_location' ] ) && isset( $pieces[ 'fields'][ 'text_location' ][ 'value' ] ) && is_string( $pieces[ 'fields' ][ 'text_location' ][ 'value' ] ) ) {
        $text_location = $pieces[ 'fields' ][ 'text_location' ][ 'value' ];
    }
    //set post title using $event_date
    $pieces[ 'object_fields' ][ 'post_title' ][ 'value' ] = $event_date . ' - ' . $text_location;
    //return $pieces to save
    return $pieces;
}

Site Health.txt

Screenshots / Screencast

No response

Possible Workaround

No response

Site Health Information

### wp-core ###

version: 6.3.1
site_language: en_US
user_language: en_US
timezone: America/Toronto
permalink: /%postname%/
https_status: true
multisite: false
user_registration: 0
blog_public: 1
default_comment_status: undefined
environment_type: production
user_count: 2
dotorg_communication: true

### wp-paths-sizes ###

wordpress_path: /home/nanookexpedition/public_html
wordpress_size: loading...
uploads_path: /home/nanookexpedition/public_html/wp-content/uploads
uploads_size: loading...
themes_path: /home/nanookexpedition/public_html/wp-content/themes
themes_size: loading...
plugins_path: /home/nanookexpedition/public_html/wp-content/plugins
plugins_size: loading...
database_size: loading...
total_size: loading...

### wp-dropins (1) ###

advanced-cache.php: true

### wp-active-theme ###

name: Esotera Plus Child (esotera-plus-child)
version: 0.5
author: Cryout Creations
author_website: http://www.cryoutcreations.eu
parent_theme: Esotera Plus (esotera-plus)
theme_features: core-block-patterns, editor-style, widgets-block-editor, custom-header, title-tag, automatic-feed-links, html5, post-formats, custom-background, custom-logo, menus, post-thumbnails, responsive-embeds, align-wide, editor-color-palette, editor-font-sizes, woocommerce, wc-product-gallery-zoom, wc-product-gallery-lightbox, wc-product-gallery-slider, widgets
theme_path: /home/nanookexpedition/public_html/wp-content/themes/esotera-plus-child
auto_update: Disabled

### wp-parent-theme ###

name: Esotera Plus (esotera-plus)
version: 1.2.5.1
author: Cryout Creations
author_website: http://www.cryoutcreations.eu
theme_path: /home/nanookexpedition/public_html/wp-content/themes/esotera-plus
auto_update: Disabled

### wp-themes-inactive (1) ###

Twenty Twenty: version: 2.1, author: the WordPress team (latest version: 2.2), Auto-updates disabled

### wp-plugins-active (32) ###

Admin Columns Pro: version: 6.2.2, author: AdminColumns.com (latest version: 6.3.5), Auto-updates enabled
Admin Menu Editor: version: 1.11.2, author: Janis Elsts, Auto-updates enabled
All-in-One WP Migration: version: 7.78, author: ServMask, Auto-updates enabled
All-in-One WP Migration Google Drive Extension: version: 2.81, author: ServMask, Auto-updates enabled
Classic Editor: version: 1.6.3, author: WordPress Contributors, Auto-updates enabled
Content Aware Sidebars: version: 3.19.2, author: Joachim Jensen - DEV Institute, Auto-updates enabled
Cryout Featured Content: version: 1.2.1, author: Cryout Creations, Auto-updates enabled
Cryout SysInfo: version: 0.5.1, author: Cryout Creations, Auto-updates enabled
Enable Media Replace: version: 4.1.4, author: ShortPixel, Auto-updates enabled
Force Regenerate Thumbnails: version: 2.1.3, author: Exactly WWW, Auto-updates enabled
LiteSpeed Cache: version: 5.6, author: LiteSpeed Technologies, Auto-updates enabled
Loginizer: version: 1.8.1, author: Softaculous, Auto-updates enabled
Members: version: 3.2.8, author: MemberPress, Auto-updates enabled
Plugin Notes Plus: version: 1.2.6, author: Jamie Bergen, Auto-updates enabled
Pods - Custom Content Types and Fields: version: 2.9.19, author: Pods Framework Team (latest version: 3.0.6), Auto-updates disabled
Pods Address Field: version: 1.0, author: Jory Hogeveen, Auto-updates enabled
Pods Maps: version: 1.0, author: Jory Hogeveen, Auto-updates enabled
Post Type Switcher: version: 3.2.1, author: Triple J Software, Inc., Auto-updates enabled
PostX - Gutenberg Post Grid Blocks: version: 3.1.2, author: wpxpo, Auto-updates enabled
Redirection: version: 5.3.10, author: John Godley, Auto-updates enabled
Simple History: version: 4.6.0, author: Pär Thernström, Auto-updates enabled
Site Kit by Google: version: 1.110.0, author: Google, Auto-updates enabled
Smash Balloon Instagram Feed: version: 6.2.2, author: Smash Balloon (latest version: 6.2.3), Auto-updates enabled
Spectra: version: 2.7.11, author: Brainstorm Force, Auto-updates enabled
TablePress: version: 2.1.7, author: Tobias Bäthge, Auto-updates enabled
WP Activity Log: version: 4.5.3, author: WP White Security, Auto-updates enabled
WP Dashboard Notes: version: 1.0.10, author: Jeroen Sormani, Auto-updates enabled
WPForms Lite: version: 1.8.4, author: WPForms, Auto-updates enabled
WPFront Notification Bar: version: 3.3.2, author: Syam Mohan, Auto-updates enabled
WP Mail SMTP: version: 3.9.0, author: WP Mail SMTP, Auto-updates enabled
WP Rollback: version: 1.7.3, author: GiveWP.com, Auto-updates enabled
Yoast Duplicate Post: version: 4.5, author: Enrico Battocchi & Team Yoast, Auto-updates disabled

### wp-plugins-inactive (8) ###

Advanced Editor Tools: version: 5.9.2, author: Automattic, Auto-updates enabled
Duplicate Page: version: 4.5.3, author: mndpsingh287, Auto-updates enabled
Hide Admin Bar: version: 0.4.7, author: Shelby DeNike, Auto-updates enabled
Imagify: version: 2.1, author: Imagify – Optimize Images & Convert WebP (latest version: 2.1.2), Auto-updates disabled
Peter's Post Notes: version: 1.6.5, author: Peter Keung, Auto-updates enabled
Post Duplicator: version: 2.31, author: Metaphor Creations, Auto-updates disabled
WP Rocket: version: 3.11.4.2, author: WP Media, Auto-updates disabled
Yoast SEO: version: 21.2, author: Team Yoast, Auto-updates enabled

### wp-media ###

image_editor: WP_Image_Editor_Imagick
imagick_module_version: 1808
imagemagick_version: ImageMagick 7.1.0-62 Q16-HDRI x86_64 20885 https://imagemagick.org
imagick_version: 3.7.0
file_uploads: File uploads is turned off
post_max_size: 64M
upload_max_filesize: 64M
max_effective_size: 64 MB
max_file_uploads: 20
imagick_limits: 
    imagick::RESOURCETYPE_AREA: 235 GB
    imagick::RESOURCETYPE_DISK: 9.2233720368548E+18
    imagick::RESOURCETYPE_FILE: 37500
    imagick::RESOURCETYPE_MAP: 118 GB
    imagick::RESOURCETYPE_MEMORY: 59 GB
    imagick::RESOURCETYPE_THREAD: 1
    imagick::RESOURCETYPE_TIME: 9.2233720368548E+18
imagemagick_file_formats: 3FR, 3G2, 3GP, AAI, AI, APNG, ART, ARW, ASHLAR, AVI, AVIF, AVS, BAYER, BAYERA, BGR, BGRA, BGRO, BIE, BMP, BMP2, BMP3, BRF, CAL, CALS, CANVAS, CAPTION, CIN, CIP, CLIP, CMYK, CMYKA, CR2, CR3, CRW, CUBE, CUR, CUT, DATA, DCM, DCR, DCRAW, DCX, DDS, DFONT, DNG, DOT, DPX, DXT1, DXT5, EPDF, EPI, EPS, EPS2, EPS3, EPSF, EPSI, EPT, EPT2, EPT3, ERF, EXR, FARBFELD, FAX, FF, FILE, FITS, FL32, FLV, FRACTAL, FTP, FTS, FTXT, G3, G4, GIF, GIF87, GRADIENT, GRAY, GRAYA, GROUP4, GV, HALD, HDR, HEIC, HEIF, HISTOGRAM, HRZ, HTM, HTML, HTTP, HTTPS, ICB, ICO, ICON, IIQ, INFO, INLINE, IPL, ISOBRL, ISOBRL6, J2C, J2K, JBG, JBIG, JNG, JNX, JP2, JPC, JPE, JPEG, JPG, JPM, JPS, JPT, JSON, K25, KDC, KERNEL, LABEL, M2V, M4V, MAC, MAP, MASK, MAT, MATTE, MEF, MIFF, MKV, MNG, MONO, MOV, MP4, MPC, MPEG, MPG, MRW, MSL, MSVG, MTV, MVG, NEF, NRW, NULL, ORA, ORF, OTB, OTF, PAL, PALM, PAM, PANGO, PATTERN, PBM, PCD, PCDS, PCL, PCT, PCX, PDB, PDF, PDFA, PEF, PES, PFA, PFB, PFM, PGM, PGX, PHM, PICON, PICT, PIX, PJPEG, PLASMA, PNG, PNG00, PNG24, PNG32, PNG48, PNG64, PNG8, PNM, POCKETMOD, PPM, PS, PS2, PS3, PSB, PSD, PTIF, PWP, QOI, RADIAL-GRADIENT, RAF, RAS, RAW, RGB, RGB565, RGBA, RGBO, RGF, RLA, RLE, RMF, RSVG, RW2, SCR, SCT, SFW, SGI, SHTML, SIX, SIXEL, SPARSE-COLOR, SR2, SRF, STEGANO, STRIMG, SUN, SVG, SVGZ, TEXT, TGA, THUMBNAIL, TIFF, TIFF64, TILE, TIM, TM2, TTC, TTF, TXT, UBRL, UBRL6, UIL, UYVY, VDA, VICAR, VID, VIFF, VIPS, VST, WBMP, WEBM, WEBP, WMF, WMV, WMZ, WPG, X, X3F, XBM, XC, XCF, XPM, XPS, XV, XWD, YAML, YCbCr, YCbCrA, YUV
gd_version: 2.3.3
gd_formats: GIF, JPEG, PNG, WebP, BMP, XPM
ghostscript_version: 9.25

### wp-server ###

server_architecture: Linux 3.10.0-962.3.2.lve1.5.25.12.el7.x86_64 x86_64
httpd_software: LiteSpeed
php_version: 7.4.33 64bit
php_sapi: litespeed
max_input_variables: 1000
time_limit: 300
memory_limit: 256M
max_input_time: -1
upload_max_filesize: 64M
php_post_max_size: 64M
curl_version: 7.87.0 OpenSSL/1.1.1p
suhosin: false
imagick_availability: true
pretty_permalinks: true
htaccess_extra_rules: true
current: 2023-10-03T00:16:43+00:00
utc-time: Tuesday, 03-Oct-23 00:16:43 UTC
server-time: 2023-10-02T20:16:39-04:00

### wp-database ###

extension: mysqli
server_version: 5.7.43-log-cll-lve
client_version: mysqlnd 7.4.33
max_allowed_packet: 1073741824
max_connections: 800

### wp-constants ###

WP_HOME: undefined
WP_SITEURL: undefined
WP_CONTENT_DIR: /home/nanookexpedition/public_html/wp-content
WP_PLUGIN_DIR: /home/nanookexpedition/public_html/wp-content/plugins
WP_MEMORY_LIMIT: 40M
WP_MAX_MEMORY_LIMIT: 256M
WP_DEBUG: false
WP_DEBUG_DISPLAY: true
WP_DEBUG_LOG: false
SCRIPT_DEBUG: false
WP_CACHE: true
CONCATENATE_SCRIPTS: false
COMPRESS_SCRIPTS: undefined
COMPRESS_CSS: undefined
WP_ENVIRONMENT_TYPE: Undefined
WP_DEVELOPMENT_MODE: undefined
DB_CHARSET: utf8mb4
DB_COLLATE: undefined

### wp-filesystem ###

wordpress: writable
wp-content: writable
uploads: writable
plugins: writable
themes: writable

### google-site-kit ###

version: 1.110.0
php_version: 7.4.33
wp_version: 6.3.1
reference_url: https://nanookexpeditions.com
amp_mode: no
site_status: connected-site
user_status: authenticated
verification_status: verified-file
connected_user_count: 1
active_modules: site-verification, search-console, analytics, analytics-4, pagespeed-insights
recoverable_modules: none
required_scopes: 
    openid: ✅
    https://www.googleapis.com/auth/userinfo.profile: ✅
    https://www.googleapis.com/auth/userinfo.email: ✅
    https://www.googleapis.com/auth/siteverification: ✅
    https://www.googleapis.com/auth/webmasters: ✅
    https://www.googleapis.com/auth/analytics.readonly: ✅
capabilities: 
    googlesitekit_authenticate: ✅
    googlesitekit_setup: ✅
    googlesitekit_view_posts_insights: ✅
    googlesitekit_view_dashboard: ✅
    googlesitekit_manage_options: ✅
    googlesitekit_update_plugins: ✅
    googlesitekit_view_splash: ✅
    googlesitekit_view_authenticated_dashboard: ✅
    googlesitekit_view_wp_dashboard_widget: ✅
    googlesitekit_view_admin_bar_menu: ✅
    googlesitekit_view_shared_dashboard: ⭕
    googlesitekit_read_shared_module_data::["search-console"]: ⭕
    googlesitekit_read_shared_module_data::["analytics"]: ⭕
    googlesitekit_read_shared_module_data::["pagespeed-insights"]: ⭕
    googlesitekit_manage_module_sharing_options::["search-console"]: ⭕
    googlesitekit_manage_module_sharing_options::["analytics"]: ✅
    googlesitekit_manage_module_sharing_options::["pagespeed-insights"]: ✅
    googlesitekit_delegate_module_sharing_management::["search-console"]: ⭕
    googlesitekit_delegate_module_sharing_management::["analytics"]: ✅
    googlesitekit_delegate_module_sharing_management::["pagespeed-insights"]: ⭕
enabled_features: 
    adsenseSetupV2: ✅
    enhancedMeasurement: ⭕
    ga4Reporting: ✅
    gm3Components: ⭕
    newsKeyMetrics: ⭕
    userInput: ⭕
search-console_shared_roles: none
search-console_management: owner
analytics_shared_roles: none
analytics_management: owner
pagespeed-insights_shared_roles: none
pagespeed-insights_management: all_admins
search_console_property: https://nanookexpeditions.com/
analytics_account_id: 1945•••••
analytics_property_id: UA-1945•••••••
analytics_profile_id: 2410•••••
analytics_use_snippet: yes
analytics_4_property_id: none
analytics_4_web_data_stream_id: none
analytics_4_measurement_id: none
analytics_4_use_snippet: yes

### wp_mail_smtp ###

version: 3.9.0
license_key_type: lite
debug: No debug notices found.
lite_install_date: Mar 22, 2021 @ 8:46am

### pods ###

pods-server-software: LiteSpeed
pods-user-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36 Edg/117.0.2045.41
pods-session-save-path: /opt/alt/php74/var/lib/php/session
pods-session-save-path-exists: Yes
pods-session-save-path-writable: Yes
pods-session-max-lifetime: 1440
pods-opcode-cache-apc: No
pods-opcode-cache-memcached: No
pods-opcode-cache-opcache: Yes
pods-opcode-cache-redis: No
pods-object-cache-apc: No
pods-object-cache-apcu: No
pods-object-cache-memcache: No
pods-object-cache-memcached: Yes
pods-object-cache-redis: Yes
pods-memory-current-usage: 18.645M / 40M
pods-memory-current-usage-real: 14.000M
pods-network-wide: No
pods-install-location: /wp-content/plugins/pods/
pods-developer: No
pods-tableless-mode: No
pods-relationship-table-enabled: Yes
pods-relationship-table-status: 542
pods-light-mode: No
pods-strict: No
pods-allow-deprecated: Yes
pods-api-cache: Yes
pods-shortcode-allow-evaluate-tags: No
pods-sessions: Disable sessions
pods-can-use-sessions: Yes
pods-settings-types_only: No
pods-settings-watch_changed_fields: Yes
pods-settings-metadata_integration: Yes
pods-settings-metadata_override_get: Yes

### wpforms ###

version: 1.8.4
lite: Mar 22, 2021 @ 8:46am
upload_dir: Writable
total_forms: 1
total_submissions: 64

Pods Package

{
    "@meta": {
        "version": "2.9.19",
        "build": 1696292444
    },
    "settings": {
        "types_only": "0",
        "watch_changed_fields": "1",
        "metadata_integration": "1",
        "metadata_override_get": "1",
        "media_modal_fields": "1",
        "session_auto_start": "0",
        "wisdom_opt_out": "1"
    },
    "pods": [
        {
            "name": "area",
            "id": 672,
            "label": "Areas",
            "description": "",
            "label_singular": "Area",
            "public": "1",
            "show_ui": "1",
            "supports_title": "1",
            "supports_editor": "1",
            "type": "post_type",
            "storage": "meta",
            "publicly_queryable": "1",
            "exclude_from_search": "0",
            "capability_type": "post",
            "capability_type_custom": "area",
            "capability_type_extra": "1",
            "has_archive": "1",
            "hierarchical": "0",
            "rewrite": "1",
            "rewrite_with_front": "1",
            "rewrite_feeds": "0",
            "rewrite_pages": "1",
            "query_var": "1",
            "can_export": "1",
            "default_status": "draft",
            "supports_author": "0",
            "supports_thumbnail": "0",
            "supports_excerpt": "0",
            "supports_trackbacks": "0",
            "supports_custom_fields": "0",
            "supports_comments": "0",
            "supports_revisions": "0",
            "supports_page_attributes": "0",
            "supports_post_formats": "0",
            "built_in_taxonomies_category": "0",
            "built_in_taxonomies_cryout-featured-blob-category": "0",
            "built_in_taxonomies_link_category": "0",
            "built_in_taxonomies_post_tag": "1",
            "show_in_menu": "1",
            "menu_position": "0",
            "show_in_nav_menus": "1",
            "show_in_admin_bar": "1",
            "pfat_enable": "1",
            "pfat_append_single": "prepend",
            "pfat_filter_single": "the_content",
            "pfat_append_archive": "append",
            "pfat_filter_archive": "the_excerpt",
            "pfat_run_outside_loop": "0",
            "rest_enable": "1",
            "read_all": "0",
            "write_all": "0",
            "pfat_single": "single area",
            "built_in_taxonomies_wp_theme": "0",
            "_migrated_28": "1",
            "groups": [
                {
                    "name": "more_fields",
                    "id": 1090,
                    "label": "More Fields",
                    "description": "",
                    "weight": 0,
                    "fields": [
                        {
                            "name": "area_book",
                            "id": 832,
                            "label": "Booking Link",
                            "description": "if nothing is listed here the generic calendar widget with all courses will appear",
                            "weight": 0,
                            "type": "text",
                            "required": "0",
                            "text_allow_shortcode": "0",
                            "text_allow_html": "0",
                            "text_allowed_html_tags": "strong em a ul ol li b i",
                            "text_max_length": "255",
                            "maps": "0",
                            "maps_autocorrect": "0",
                            "maps_display": "replace",
                            "maps_style": "static",
                            "maps_type": "roadmap",
                            "maps_zoom": "12",
                            "maps_scrollwheel": "1",
                            "maps_info_window": "0",
                            "maps_info_window_content": "paragraph",
                            "maps_info_window_template": "526",
                            "admin_only": "0",
                            "restrict_role": "0",
                            "restrict_capability": "0",
                            "hidden": "0",
                            "read_only": "0",
                            "roles_allowed": [
                                "administrator"
                            ],
                            "rest_read": "0",
                            "rest_write": "0",
                            "rest_pick_response": "array",
                            "rest_pick_depth": "1",
                            "unique": "0",
                            "text_repeatable": "0"
                        },
                        {
                            "name": "exclude",
                            "id": 922,
                            "label": "Exclude",
                            "description": "choose to show or hide this \"area\" from the list of areas on the \/browse-courses-by-area\/ page.  Areas listed on landing page are tagged with landing",
                            "weight": 1,
                            "type": "pick",
                            "required": "0",
                            "pick_format_type": "single",
                            "pick_format_single": "dropdown",
                            "pick_format_multi": "checkbox",
                            "pick_display_format_multi": "default",
                            "pick_display_format_separator": ", ",
                            "pick_allow_add_new": "1",
                            "pick_taggable": "0",
                            "pick_show_icon": "1",
                            "pick_show_edit_link": "1",
                            "pick_show_view_link": "1",
                            "pick_limit": "0",
                            "pick_post_status": [
                                "publish"
                            ],
                            "maps": "0",
                            "maps_autocorrect": "0",
                            "maps_display": "replace",
                            "maps_style": "static",
                            "maps_type": "roadmap",
                            "maps_zoom": "12",
                            "maps_scrollwheel": "1",
                            "maps_info_window": "0",
                            "maps_info_window_content": "paragraph",
                            "maps_info_window_template": "526",
                            "admin_only": "0",
                            "restrict_role": "0",
                            "restrict_capability": "0",
                            "hidden": "0",
                            "read_only": "0",
                            "roles_allowed": [
                                "administrator"
                            ],
                            "rest_read": "0",
                            "rest_write": "0",
                            "rest_pick_response": "array",
                            "rest_pick_depth": "1",
                            "pick_object": "custom-simple",
                            "unique": "0",
                            "pick_custom": "Show\nHide"
                        }
                    ]
                }
            ]
        },
        {
            "name": "description",
            "id": 386,
            "label": "Course Description",
            "description": "",
            "label_singular": "Course Description",
            "public": "1",
            "show_ui": "1",
            "supports_title": "1",
            "supports_editor": "1",
            "type": "post_type",
            "storage": "meta",
            "publicly_queryable": "1",
            "exclude_from_search": "0",
            "capability_type": "post",
            "capability_type_custom": "description",
            "capability_type_extra": "1",
            "has_archive": "0",
            "hierarchical": "0",
            "rewrite": "1",
            "rewrite_with_front": "1",
            "rewrite_feeds": "0",
            "rewrite_pages": "1",
            "query_var": "1",
            "can_export": "1",
            "default_status": "draft",
            "supports_author": "0",
            "supports_thumbnail": "0",
            "supports_excerpt": "0",
            "supports_trackbacks": "0",
            "supports_custom_fields": "0",
            "supports_comments": "0",
            "supports_revisions": "0",
            "supports_page_attributes": "0",
            "supports_post_formats": "0",
            "built_in_taxonomies_category": "0",
            "built_in_taxonomies_cryout-featured-blob-category": "0",
            "built_in_taxonomies_link_category": "0",
            "built_in_taxonomies_post_tag": "0",
            "show_in_menu": "1",
            "menu_position": "0",
            "show_in_nav_menus": "1",
            "show_in_admin_bar": "1",
            "pfat_enable": "0",
            "pfat_append_single": "append",
            "pfat_filter_single": "the_content",
            "pfat_append_archive": "append",
            "pfat_filter_archive": "the_excerpt",
            "pfat_run_outside_loop": "0",
            "rest_enable": "1",
            "read_all": "0",
            "write_all": "0",
            "_migrated_28": "1",
            "groups": [
                {
                    "name": "more_fields",
                    "id": 1573,
                    "label": "More Fields",
                    "description": "",
                    "weight": 0,
                    "fields": []
                }
            ]
        },
        {
            "name": "kayak",
            "id": 1037,
            "label": "Kayaks",
            "description": "",
            "label_singular": "Kayak",
            "public": "1",
            "show_ui": "1",
            "supports_title": "1",
            "supports_editor": "1",
            "type": "post_type",
            "storage": "meta",
            "publicly_queryable": "1",
            "exclude_from_search": "0",
            "capability_type": "post",
            "capability_type_custom": "kayak",
            "capability_type_extra": "1",
            "has_archive": "0",
            "hierarchical": "0",
            "rewrite": "1",
            "rewrite_with_front": "1",
            "rewrite_feeds": "0",
            "rewrite_pages": "1",
            "query_var": "1",
            "can_export": "1",
            "default_status": "draft",
            "supports_author": "0",
            "supports_thumbnail": "1",
            "supports_excerpt": "0",
            "supports_trackbacks": "0",
            "supports_custom_fields": "0",
            "supports_comments": "0",
            "supports_revisions": "0",
            "supports_page_attributes": "0",
            "supports_post_formats": "0",
            "built_in_taxonomies_category": "0",
            "built_in_taxonomies_cryout-featured-blob-category": "0",
            "built_in_taxonomies_link_category": "0",
            "built_in_taxonomies_post_tag": "0",
            "built_in_taxonomies_wp_theme": "0",
            "show_in_menu": "1",
            "menu_position": "0",
            "show_in_nav_menus": "1",
            "show_in_admin_bar": "1",
            "pfat_enable": "1",
            "pfat_append_single": "prepend",
            "pfat_filter_single": "the_content",
            "pfat_append_archive": "append",
            "pfat_filter_archive": "the_excerpt",
            "pfat_run_outside_loop": "0",
            "rest_enable": "1",
            "read_all": "1",
            "write_all": "1",
            "pfat_single": "Single Kayak",
            "groups": [
                {
                    "name": "more_fields",
                    "label": "More Fields",
                    "fields": [
                        {
                            "name": "price",
                            "id": 1041,
                            "label": "Price",
                            "description": "",
                            "weight": 0,
                            "type": "currency",
                            "required": "0",
                            "text_allow_shortcode": "0",
                            "text_allow_html": "0",
                            "phone_enable_phone_extension": "1",
                            "paragraph_allow_html": "1",
                            "paragraph_oembed": "0",
                            "paragraph_wptexturize": "1",
                            "paragraph_convert_chars": "1",
                            "paragraph_wpautop": "1",
                            "paragraph_allow_shortcode": "0",
                            "wysiwyg_media_buttons": "1",
                            "wysiwyg_oembed": "0",
                            "wysiwyg_wptexturize": "1",
                            "wysiwyg_convert_chars": "1",
                            "wysiwyg_wpautop": "1",
                            "wysiwyg_allow_shortcode": "0",
                            "code_allow_shortcode": "0",
                            "currency_format_type": "number",
                            "currency_format_sign": "cad",
                            "currency_format_placement": "before",
                            "currency_format": "i18n",
                            "currency_decimals": "2",
                            "currency_decimal_handling": "none",
                            "currency_step": "1",
                            "currency_min": "0",
                            "currency_max": "1000",
                            "currency_max_length": "12",
                            "oembed_enabled_providers_amazoncn": "0",
                            "oembed_enabled_providers_amazoncouk": "0",
                            "oembed_enabled_providers_amazoncom": "0",
                            "oembed_enabled_providers_amazoncomau": "0",
                            "oembed_enabled_providers_amazonin": "0",
                            "oembed_enabled_providers_animotocom": "0",
                            "oembed_enabled_providers_cloudupcom": "0",
                            "oembed_enabled_providers_crowdsignalcom": "0",
                            "oembed_enabled_providers_dailymotioncom": "0",
                            "oembed_enabled_providers_flickrcom": "0",
                            "oembed_enabled_providers_imgurcom": "0",
                            "oembed_enabled_providers_issuucom": "0",
                            "oembed_enabled_providers_kickstartercom": "0",
                            "oembed_enabled_providers_meetupcom": "0",
                            "oembed_enabled_providers_mixcloudcom": "0",
                            "oembed_enabled_providers_redditcom": "0",
                            "oembed_enabled_providers_reverbnationcom": "0",
                            "oembed_enabled_providers_screencastcom": "0",
                            "oembed_enabled_providers_scribdcom": "0",
                            "oembed_enabled_providers_slidesharenet": "0",
                            "oembed_enabled_providers_smugmugcom": "0",
                            "oembed_enabled_providers_someecardscom": "0",
                            "oembed_enabled_providers_soundcloudcom": "0",
                            "oembed_enabled_providers_speakerdeckcom": "0",
                            "oembed_enabled_providers_spotifycom": "0",
                            "oembed_enabled_providers_tedcom": "0",
                            "oembed_enabled_providers_tiktokcom": "0",
                            "oembed_enabled_providers_tumblrcom": "0",
                            "oembed_enabled_providers_twittercom": "0",
                            "oembed_enabled_providers_vimeocom": "0",
                            "oembed_enabled_providers_wordpresscom": "0",
                            "oembed_enabled_providers_wordpresstv": "0",
                            "oembed_enabled_providers_youtubecom": "0",
                            "maps": "0",
                            "maps_autocorrect": "0",
                            "maps_display": "replace",
                            "maps_style": "static",
                            "maps_type": "roadmap",
                            "maps_zoom": "12",
                            "maps_scrollwheel": "1",
                            "maps_info_window": "0",
                            "maps_info_window_content": "paragraph",
                            "maps_info_window_template": "526",
                            "admin_only": "0",
                            "restrict_role": "0",
                            "restrict_capability": "0",
                            "hidden": "0",
                            "read_only": "0",
                            "roles_allowed": [
                                "administrator"
                            ],
                            "rest_read": "0",
                            "rest_write": "0",
                            "rest_pick_response": "array",
                            "rest_pick_depth": "1",
                            "unique": "0",
                            "currency_repeatable": "0"
                        }
                    ]
                }
            ]
        },
        {
            "name": "location",
            "id": 184,
            "label": "Locations",
            "description": "",
            "label_singular": "Location",
            "public": "1",
            "show_ui": "1",
            "supports_title": "1",
            "supports_editor": "1",
            "type": "post_type",
            "storage": "meta",
            "publicly_queryable": "1",
            "exclude_from_search": "0",
            "capability_type": "post",
            "capability_type_custom": "location",
            "capability_type_extra": "1",
            "has_archive": "0",
            "hierarchical": "0",
            "rewrite": "1",
            "rewrite_with_front": "1",
            "rewrite_feeds": "0",
            "rewrite_pages": "1",
            "query_var": "1",
            "can_export": "1",
            "default_status": "draft",
            "supports_author": "0",
            "supports_thumbnail": "0",
            "supports_excerpt": "0",
            "supports_trackbacks": "0",
            "supports_custom_fields": "0",
            "supports_comments": "0",
            "supports_revisions": "0",
            "supports_page_attributes": "0",
            "supports_post_formats": "0",
            "built_in_taxonomies_category": "0",
            "built_in_taxonomies_cryout-featured-blob-category": "0",
            "built_in_taxonomies_link_category": "0",
            "built_in_taxonomies_post_tag": "0",
            "show_in_menu": "1",
            "menu_position": "0",
            "show_in_nav_menus": "1",
            "show_in_admin_bar": "1",
            "pfat_enable": "0",
            "pfat_append_single": "append",
            "pfat_filter_single": "the_content",
            "pfat_append_archive": "append",
            "pfat_filter_archive": "the_excerpt",
            "pfat_run_outside_loop": "0",
            "rest_enable": "0",
            "read_all": "0",
            "write_all": "0",
            "_migrated_28": "1",
            "groups": [
                {
                    "name": "more_fields",
                    "id": 1094,
                    "label": "More Fields",
                    "description": "",
                    "weight": 0,
                    "fields": []
                }
            ]
        },
        {
            "name": "message",
            "id": 976,
            "label": "Messages",
            "description": "",
            "label_singular": "Message",
            "public": "1",
            "show_ui": "1",
            "supports_title": "1",
            "supports_editor": "1",
            "type": "post_type",
            "storage": "meta",
            "publicly_queryable": "1",
            "exclude_from_search": "0",
            "capability_type": "post",
            "capability_type_custom": "message",
            "capability_type_extra": "1",
            "has_archive": "0",
            "hierarchical": "0",
            "rewrite": "1",
            "rewrite_with_front": "1",
            "rewrite_feeds": "0",
            "rewrite_pages": "1",
            "query_var": "1",
            "can_export": "1",
            "default_status": "draft",
            "supports_author": "0",
            "supports_thumbnail": "0",
            "supports_excerpt": "0",
            "supports_trackbacks": "0",
            "supports_custom_fields": "0",
            "supports_comments": "0",
            "supports_revisions": "0",
            "supports_page_attributes": "0",
            "supports_post_formats": "0",
            "built_in_taxonomies_category": "0",
            "built_in_taxonomies_cryout-featured-blob-category": "0",
            "built_in_taxonomies_link_category": "0",
            "built_in_taxonomies_post_tag": "0",
            "built_in_taxonomies_wp_theme": "0",
            "show_in_menu": "1",
            "menu_position": "0",
            "show_in_nav_menus": "1",
            "show_in_admin_bar": "1",
            "pfat_enable": "0",
            "pfat_append_single": "append",
            "pfat_filter_single": "the_content",
            "pfat_append_archive": "append",
            "pfat_filter_archive": "the_excerpt",
            "pfat_run_outside_loop": "0",
            "rest_enable": "0",
            "read_all": "0",
            "write_all": "0",
            "groups": [
                {
                    "name": "more_fields",
                    "label": "More Fields",
                    "fields": []
                }
            ]
        },
        {
            "name": "info",
            "id": 17,
            "label": "Nanook Settings",
            "description": "",
            "menu_name": "Nanook Settings",
            "menu_location": "settings",
            "type": "settings",
            "storage": "none",
            "ui_style": "settings",
            "menu_position": "0",
            "_uag_page_assets": {
                "css": ".wp-block-uagb-icon-list.uagb-block-05af5053 .uagb-icon-list__source-image{width: 16px;}.wp-block-uagb-icon-list.uagb-block-05af5053 .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap svg{width: 16px;height: 16px;font-size: 16px;color: #afafaf;fill: #afafaf;}.wp-block-uagb-icon-list.uagb-block-05af5053 .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap{padding: 0px;border-radius: 0px;border-width: 0px;align-self: center;}.wp-block-uagb-icon-list.uagb-block-05af5053 .wp-block-uagb-icon-list-child .uagb-icon-list__label{text-decoration: !important;font-style: oblique;line-height: em;color: #afafaf;}.wp-block-uagb-icon-list.uagb-block-05af5053 .uagb-icon-list__wrap{display: flex;flex-direction: column;justify-content: center;-webkit-box-pack: center;-ms-flex-pack: center;-webkit-box-align: flex-start;-ms-flex-align: flex-start;align-items: flex-start;}.wp-block-uagb-icon-list.uagb-block-05af5053 .uagb-icon-list__label{text-align: left;}.wp-block-uagb-icon-list.uagb-block-05af5053 .wp-block-uagb-icon-list-child{text-decoration: !important;font-style: oblique;line-height: em;}.wp-block-uagb-icon-list.uagb-block-05af5053.wp-block-uagb-icon-list .wp-block-uagb-icon-list-child{margin-left: 0;margin-right: 0;margin-bottom: 10px;}.wp-block-uagb-icon-list.uagb-block-05af5053 .uagb-icon-list__source-wrap{margin-right: 15px;}.uagb-block-4e10e5b8.wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap{background:  !important;border-color:  !important;}.uagb-block-4e10e5b8.wp-block-uagb-icon-list-child:hover .uagb-icon-list__source-wrap{background:  !important;border-color:  !important;}.uagb-block-9d934b0c.wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap{background:  !important;border-color:  !important;}.uagb-block-9d934b0c.wp-block-uagb-icon-list-child:hover .uagb-icon-list__source-wrap{background:  !important;border-color:  !important;}.uagb-block-a149a034.wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap{background:  !important;border-color:  !important;}.uagb-block-a149a034.wp-block-uagb-icon-list-child:hover .uagb-icon-list__source-wrap{background:  !important;border-color:  !important;}@media only screen and (max-width: 976px) {.wp-block-uagb-icon-list.uagb-block-05af5053 .uagb-icon-list__source-image{width: 16px;}.wp-block-uagb-icon-list.uagb-block-05af5053 .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap svg{width: 16px;height: 16px;font-size: 16px;}.wp-block-uagb-icon-list.uagb-block-05af5053 .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap {padding: 0px;border-width: 0px;align-self: center;}.wp-block-uagb-icon-list.uagb-block-05af5053 .uagb-icon-list__wrap{display: flex;flex-direction: column;justify-content: center;-webkit-box-pack: center;-ms-flex-pack: center;-webkit-box-align: flex-start;-ms-flex-align: flex-start;align-items: flex-start;}.wp-block-uagb-icon-list.uagb-block-05af5053.wp-block-uagb-icon-list .wp-block-uagb-icon-list-child{margin-left: 0;margin-right: 0;margin-bottom: 10px;}}@media only screen and (max-width: 767px) {.wp-block-uagb-icon-list.uagb-block-05af5053 .uagb-icon-list__source-image{width: 16px;}.wp-block-uagb-icon-list.uagb-block-05af5053 .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap svg{width: 16px;height: 16px;font-size: 16px;}.wp-block-uagb-icon-list.uagb-block-05af5053 .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap{padding: 0px;border-width: 0px;align-self: center;}.wp-block-uagb-icon-list.uagb-block-05af5053 .uagb-icon-list__wrap{display: flex;flex-direction: column;justify-content: center;-webkit-box-pack: center;-ms-flex-pack: center;-webkit-box-align: flex-start;-ms-flex-align: flex-start;align-items: flex-start;}.wp-block-uagb-icon-list.uagb-block-05af5053.wp-block-uagb-icon-list .wp-block-uagb-icon-list-child{margin-left: 0;margin-right: 0;margin-bottom: 10px;}}.uagb-block-554ddbfc.wp-block-uagb-image{margin-top: 1px;margin-right: 1px;margin-bottom: 1px;margin-left: 1px;text-align: center;justify-content: center;align-self: center;}.uagb-block-554ddbfc .wp-block-uagb-image__figure{align-items: center;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-default figure img{box-shadow: 0px 0px 0 #00000070;border-color: #FFFFFF;}.uagb-block-554ddbfc.wp-block-uagb-image .wp-block-uagb-image__figure figcaption{font-style: normal;text-align: center;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-overlay figure img{box-shadow: 0px 0px 0 #00000070;border-color: #FFFFFF;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__color-wrapper{opacity: 0.2;border-color: #FFFFFF;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner{left: 15px;right: 15px;top: 15px;bottom: 15px;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-heading{font-style: normal;color: #fff;opacity: 1;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-heading a{color: #fff;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-caption{opacity: 0;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-overlay .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__color-wrapper{opacity: 1;}.uagb-block-554ddbfc.wp-block-uagb-image .wp-block-uagb-image--layout-overlay__inner .uagb-image-separator{width: 30%;border-top-width: 2px;border-top-color: #fff;opacity: 0;}.uagb-block-554ddbfc.wp-block-uagb-image .wp-block-uagb-image__figure img{width: 159px;height: auto;}.uagb-block-554ddbfc.wp-block-uagb-image .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__inner .uagb-image-caption{opacity: 1;}.uagb-block-554ddbfc.wp-block-uagb-image .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__inner .uagb-image-separator{opacity: 1;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-default figure img:hover{box-shadow: 0px 0px 0 #00000070;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-overlay figure img:hover{box-shadow: 0px 0px 0 #00000070;}@media only screen and (max-width: 976px) {.uagb-block-554ddbfc.wp-block-uagb-image--layout-default figure img{border-color: #FFFFFF;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-overlay figure img{border-color: #FFFFFF;}.uagb-block-554ddbfc.wp-block-uagb-image .wp-block-uagb-image__figure img{width: 159px;height: auto;}}@media only screen and (max-width: 767px) {.uagb-block-554ddbfc.wp-block-uagb-image--layout-default figure img{border-color: #FFFFFF;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-overlay figure img{border-color: #FFFFFF;}.uagb-block-554ddbfc.wp-block-uagb-image .wp-block-uagb-image__figure img{width: 159px;height: auto;}}",
                "js": "",
                "current_block_list": [
                    "uagb\/icon-list",
                    "uagb\/icon-list-child",
                    "core\/image",
                    "core\/paragraph",
                    "ultimate-post\/image",
                    "uagb\/image"
                ],
                "uag_flag": true,
                "uag_version": "1695430487",
                "gfonts": [],
                "gfonts_url": "",
                "gfonts_files": [],
                "uag_faq_layout": false
            },
            "groups": [
                {
                    "name": "more_fields",
                    "label": "More Fields",
                    "fields": [
                        {
                            "name": "business_name",
                            "id": 18,
                            "label": "Business Name",
                            "description": "",
                            "weight": 0,
                            "type": "text",
                            "required": "1",
                            "text_allow_shortcode": "0",
                            "text_allow_html": "0",
                            "text_allowed_html_tags": "strong em a ul ol li b i",
                            "text_max_length": "255",
                            "phone_enable_phone_extension": "1",
                            "paragraph_allow_html": "1",
                            "paragraph_oembed": "0",
                            "paragraph_wptexturize": "1",
                            "paragraph_convert_chars": "1",
                            "paragraph_wpautop": "1",
                            "paragraph_allow_shortcode": "0",
                            "wysiwyg_media_buttons": "1",
                            "wysiwyg_oembed": "0",
                            "wysiwyg_wptexturize": "1",
                            "wysiwyg_convert_chars": "1",
                            "wysiwyg_wpautop": "1",
                            "wysiwyg_allow_shortcode": "0",
                            "code_allow_shortcode": "0",
                            "oembed_enabled_providers_amazoncn": "0",
                            "oembed_enabled_providers_amazoncouk": "0",
                            "oembed_enabled_providers_amazoncom": "0",
                            "oembed_enabled_providers_amazoncomau": "0",
                            "oembed_enabled_providers_amazonin": "0",
                            "oembed_enabled_providers_animotocom": "0",
                            "oembed_enabled_providers_cloudupcom": "0",
                            "oembed_enabled_providers_crowdsignalcom": "0",
                            "oembed_enabled_providers_dailymotioncom": "0",
                            "oembed_enabled_providers_flickrcom": "0",
                            "oembed_enabled_providers_imgurcom": "0",
                            "oembed_enabled_providers_issuucom": "0",
                            "oembed_enabled_providers_kickstartercom": "0",
                            "oembed_enabled_providers_meetupcom": "0",
                            "oembed_enabled_providers_mixcloudcom": "0",
                            "oembed_enabled_providers_redditcom": "0",
                            "oembed_enabled_providers_reverbnationcom": "0",
                            "oembed_enabled_providers_screencastcom": "0",
                            "oembed_enabled_providers_scribdcom": "0",
                            "oembed_enabled_providers_slidesharenet": "0",
                            "oembed_enabled_providers_smugmugcom": "0",
                            "oembed_enabled_providers_someecardscom": "0",
                            "oembed_enabled_providers_soundcloudcom": "0",
                            "oembed_enabled_providers_speakerdeckcom": "0",
                            "oembed_enabled_providers_spotifycom": "0",
                            "oembed_enabled_providers_tedcom": "0",
                            "oembed_enabled_providers_tiktokcom": "0",
                            "oembed_enabled_providers_tumblrcom": "0",
                            "oembed_enabled_providers_twittercom": "0",
                            "oembed_enabled_providers_vimeocom": "0",
                            "oembed_enabled_providers_wordpresscom": "0",
                            "oembed_enabled_providers_wordpresstv": "0",
                            "oembed_enabled_providers_youtubecom": "0",
                            "admin_only": "0",
                            "restrict_role": "0",
                            "restrict_capability": "0",
                            "hidden": "0",
                            "read_only": "0",
                            "roles_allowed": [
                                "administrator"
                            ],
                            "unique": "0",
                            "text_repeatable": "0",
                            "_uag_page_assets": {
                                "css": ".wp-block-uagb-icon-list.uagb-block-05af5053 .uagb-icon-list__source-image{width: 16px;}.wp-block-uagb-icon-list.uagb-block-05af5053 .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap svg{width: 16px;height: 16px;font-size: 16px;color: #afafaf;fill: #afafaf;}.wp-block-uagb-icon-list.uagb-block-05af5053 .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap{padding: 0px;border-radius: 0px;border-width: 0px;align-self: center;}.wp-block-uagb-icon-list.uagb-block-05af5053 .wp-block-uagb-icon-list-child .uagb-icon-list__label{text-decoration: !important;font-style: oblique;line-height: em;color: #afafaf;}.wp-block-uagb-icon-list.uagb-block-05af5053 .uagb-icon-list__wrap{display: flex;flex-direction: column;justify-content: center;-webkit-box-pack: center;-ms-flex-pack: center;-webkit-box-align: flex-start;-ms-flex-align: flex-start;align-items: flex-start;}.wp-block-uagb-icon-list.uagb-block-05af5053 .uagb-icon-list__label{text-align: left;}.wp-block-uagb-icon-list.uagb-block-05af5053 .wp-block-uagb-icon-list-child{text-decoration: !important;font-style: oblique;line-height: em;}.wp-block-uagb-icon-list.uagb-block-05af5053.wp-block-uagb-icon-list .wp-block-uagb-icon-list-child{margin-left: 0;margin-right: 0;margin-bottom: 10px;}.wp-block-uagb-icon-list.uagb-block-05af5053 .uagb-icon-list__source-wrap{margin-right: 15px;}.uagb-block-4e10e5b8.wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap{background:  !important;border-color:  !important;}.uagb-block-4e10e5b8.wp-block-uagb-icon-list-child:hover .uagb-icon-list__source-wrap{background:  !important;border-color:  !important;}.uagb-block-9d934b0c.wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap{background:  !important;border-color:  !important;}.uagb-block-9d934b0c.wp-block-uagb-icon-list-child:hover .uagb-icon-list__source-wrap{background:  !important;border-color:  !important;}.uagb-block-a149a034.wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap{background:  !important;border-color:  !important;}.uagb-block-a149a034.wp-block-uagb-icon-list-child:hover .uagb-icon-list__source-wrap{background:  !important;border-color:  !important;}@media only screen and (max-width: 976px) {.wp-block-uagb-icon-list.uagb-block-05af5053 .uagb-icon-list__source-image{width: 16px;}.wp-block-uagb-icon-list.uagb-block-05af5053 .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap svg{width: 16px;height: 16px;font-size: 16px;}.wp-block-uagb-icon-list.uagb-block-05af5053 .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap {padding: 0px;border-width: 0px;align-self: center;}.wp-block-uagb-icon-list.uagb-block-05af5053 .uagb-icon-list__wrap{display: flex;flex-direction: column;justify-content: center;-webkit-box-pack: center;-ms-flex-pack: center;-webkit-box-align: flex-start;-ms-flex-align: flex-start;align-items: flex-start;}.wp-block-uagb-icon-list.uagb-block-05af5053.wp-block-uagb-icon-list .wp-block-uagb-icon-list-child{margin-left: 0;margin-right: 0;margin-bottom: 10px;}}@media only screen and (max-width: 767px) {.wp-block-uagb-icon-list.uagb-block-05af5053 .uagb-icon-list__source-image{width: 16px;}.wp-block-uagb-icon-list.uagb-block-05af5053 .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap svg{width: 16px;height: 16px;font-size: 16px;}.wp-block-uagb-icon-list.uagb-block-05af5053 .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap{padding: 0px;border-width: 0px;align-self: center;}.wp-block-uagb-icon-list.uagb-block-05af5053 .uagb-icon-list__wrap{display: flex;flex-direction: column;justify-content: center;-webkit-box-pack: center;-ms-flex-pack: center;-webkit-box-align: flex-start;-ms-flex-align: flex-start;align-items: flex-start;}.wp-block-uagb-icon-list.uagb-block-05af5053.wp-block-uagb-icon-list .wp-block-uagb-icon-list-child{margin-left: 0;margin-right: 0;margin-bottom: 10px;}}.uagb-block-554ddbfc.wp-block-uagb-image{margin-top: 1px;margin-right: 1px;margin-bottom: 1px;margin-left: 1px;text-align: center;justify-content: center;align-self: center;}.uagb-block-554ddbfc .wp-block-uagb-image__figure{align-items: center;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-default figure img{box-shadow: 0px 0px 0 #00000070;border-color: #FFFFFF;}.uagb-block-554ddbfc.wp-block-uagb-image .wp-block-uagb-image__figure figcaption{font-style: normal;text-align: center;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-overlay figure img{box-shadow: 0px 0px 0 #00000070;border-color: #FFFFFF;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__color-wrapper{opacity: 0.2;border-color: #FFFFFF;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner{left: 15px;right: 15px;top: 15px;bottom: 15px;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-heading{font-style: normal;color: #fff;opacity: 1;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-heading a{color: #fff;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-caption{opacity: 0;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-overlay .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__color-wrapper{opacity: 1;}.uagb-block-554ddbfc.wp-block-uagb-image .wp-block-uagb-image--layout-overlay__inner .uagb-image-separator{width: 30%;border-top-width: 2px;border-top-color: #fff;opacity: 0;}.uagb-block-554ddbfc.wp-block-uagb-image .wp-block-uagb-image__figure img{width: 159px;height: auto;}.uagb-block-554ddbfc.wp-block-uagb-image .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__inner .uagb-image-caption{opacity: 1;}.uagb-block-554ddbfc.wp-block-uagb-image .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__inner .uagb-image-separator{opacity: 1;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-default figure img:hover{box-shadow: 0px 0px 0 #00000070;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-overlay figure img:hover{box-shadow: 0px 0px 0 #00000070;}@media only screen and (max-width: 976px) {.uagb-block-554ddbfc.wp-block-uagb-image--layout-default figure img{border-color: #FFFFFF;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-overlay figure img{border-color: #FFFFFF;}.uagb-block-554ddbfc.wp-block-uagb-image .wp-block-uagb-image__figure img{width: 159px;height: auto;}}@media only screen and (max-width: 767px) {.uagb-block-554ddbfc.wp-block-uagb-image--layout-default figure img{border-color: #FFFFFF;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-overlay figure img{border-color: #FFFFFF;}.uagb-block-554ddbfc.wp-block-uagb-image .wp-block-uagb-image__figure img{width: 159px;height: auto;}}",
                                "js": "",
                                "current_block_list": [
                                    "uagb\/icon-list",
                                    "uagb\/icon-list-child",
                                    "core\/image",
                                    "core\/paragraph",
                                    "ultimate-post\/image",
                                    "uagb\/image"
                                ],
                                "uag_flag": true,
                                "uag_version": "1695835220",
                                "gfonts": [],
                                "gfonts_url": "",
                                "gfonts_files": [],
                                "uag_faq_layout": false
                            }
                        },
                        {
                            "name": "email",
                            "id": 19,
                            "label": "Email",
                            "description": "",
                            "weight": 1,
                            "type": "email",
                            "required": "0",
                            "text_allow_shortcode": "0",
                            "text_allow_html": "0",
                            "phone_enable_phone_extension": "1",
                            "email_max_length": "255",
                            "email_html5": "0",
                            "paragraph_allow_html": "1",
                            "paragraph_oembed": "0",
                            "paragraph_wptexturize": "1",
                            "paragraph_convert_chars": "1",
                            "paragraph_wpautop": "1",
                            "paragraph_allow_shortcode": "0",
                            "wysiwyg_media_buttons": "1",
                            "wysiwyg_oembed": "0",
                            "wysiwyg_wptexturize": "1",
                            "wysiwyg_convert_chars": "1",
                            "wysiwyg_wpautop": "1",
                            "wysiwyg_allow_shortcode": "0",
                            "code_allow_shortcode": "0",
                            "oembed_enabled_providers_amazoncn": "0",
                            "oembed_enabled_providers_amazoncouk": "0",
                            "oembed_enabled_providers_amazoncom": "0",
                            "oembed_enabled_providers_amazoncomau": "0",
                            "oembed_enabled_providers_amazonin": "0",
                            "oembed_enabled_providers_animotocom": "0",
                            "oembed_enabled_providers_cloudupcom": "0",
                            "oembed_enabled_providers_crowdsignalcom": "0",
                            "oembed_enabled_providers_dailymotioncom": "0",
                            "oembed_enabled_providers_flickrcom": "0",
                            "oembed_enabled_providers_imgurcom": "0",
                            "oembed_enabled_providers_issuucom": "0",
                            "oembed_enabled_providers_kickstartercom": "0",
                            "oembed_enabled_providers_meetupcom": "0",
                            "oembed_enabled_providers_mixcloudcom": "0",
                            "oembed_enabled_providers_redditcom": "0",
                            "oembed_enabled_providers_reverbnationcom": "0",
                            "oembed_enabled_providers_screencastcom": "0",
                            "oembed_enabled_providers_scribdcom": "0",
                            "oembed_enabled_providers_slidesharenet": "0",
                            "oembed_enabled_providers_smugmugcom": "0",
                            "oembed_enabled_providers_someecardscom": "0",
                            "oembed_enabled_providers_soundcloudcom": "0",
                            "oembed_enabled_providers_speakerdeckcom": "0",
                            "oembed_enabled_providers_spotifycom": "0",
                            "oembed_enabled_providers_tedcom": "0",
                            "oembed_enabled_providers_tiktokcom": "0",
                            "oembed_enabled_providers_tumblrcom": "0",
                            "oembed_enabled_providers_twittercom": "0",
                            "oembed_enabled_providers_vimeocom": "0",
                            "oembed_enabled_providers_wordpresscom": "0",
                            "oembed_enabled_providers_wordpresstv": "0",
                            "oembed_enabled_providers_youtubecom": "0",
                            "admin_only": "0",
                            "restrict_role": "0",
                            "restrict_capability": "0",
                            "hidden": "0",
                            "read_only": "0",
                            "roles_allowed": [
                                "administrator"
                            ],
                            "unique": "0",
                            "email_repeatable": "0",
                            "_uag_page_assets": {
                                "css": ".wp-block-uagb-icon-list.uagb-block-05af5053 .uagb-icon-list__source-image{width: 16px;}.wp-block-uagb-icon-list.uagb-block-05af5053 .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap svg{width: 16px;height: 16px;font-size: 16px;color: #afafaf;fill: #afafaf;}.wp-block-uagb-icon-list.uagb-block-05af5053 .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap{padding: 0px;border-radius: 0px;border-width: 0px;align-self: center;}.wp-block-uagb-icon-list.uagb-block-05af5053 .wp-block-uagb-icon-list-child .uagb-icon-list__label{text-decoration: !important;font-style: oblique;line-height: em;color: #afafaf;}.wp-block-uagb-icon-list.uagb-block-05af5053 .uagb-icon-list__wrap{display: flex;flex-direction: column;justify-content: center;-webkit-box-pack: center;-ms-flex-pack: center;-webkit-box-align: flex-start;-ms-flex-align: flex-start;align-items: flex-start;}.wp-block-uagb-icon-list.uagb-block-05af5053 .uagb-icon-list__label{text-align: left;}.wp-block-uagb-icon-list.uagb-block-05af5053 .wp-block-uagb-icon-list-child{text-decoration: !important;font-style: oblique;line-height: em;}.wp-block-uagb-icon-list.uagb-block-05af5053.wp-block-uagb-icon-list .wp-block-uagb-icon-list-child{margin-left: 0;margin-right: 0;margin-bottom: 10px;}.wp-block-uagb-icon-list.uagb-block-05af5053 .uagb-icon-list__source-wrap{margin-right: 15px;}.uagb-block-4e10e5b8.wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap{background:  !important;border-color:  !important;}.uagb-block-4e10e5b8.wp-block-uagb-icon-list-child:hover .uagb-icon-list__source-wrap{background:  !important;border-color:  !important;}.uagb-block-9d934b0c.wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap{background:  !important;border-color:  !important;}.uagb-block-9d934b0c.wp-block-uagb-icon-list-child:hover .uagb-icon-list__source-wrap{background:  !important;border-color:  !important;}.uagb-block-a149a034.wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap{background:  !important;border-color:  !important;}.uagb-block-a149a034.wp-block-uagb-icon-list-child:hover .uagb-icon-list__source-wrap{background:  !important;border-color:  !important;}@media only screen and (max-width: 976px) {.wp-block-uagb-icon-list.uagb-block-05af5053 .uagb-icon-list__source-image{width: 16px;}.wp-block-uagb-icon-list.uagb-block-05af5053 .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap svg{width: 16px;height: 16px;font-size: 16px;}.wp-block-uagb-icon-list.uagb-block-05af5053 .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap {padding: 0px;border-width: 0px;align-self: center;}.wp-block-uagb-icon-list.uagb-block-05af5053 .uagb-icon-list__wrap{display: flex;flex-direction: column;justify-content: center;-webkit-box-pack: center;-ms-flex-pack: center;-webkit-box-align: flex-start;-ms-flex-align: flex-start;align-items: flex-start;}.wp-block-uagb-icon-list.uagb-block-05af5053.wp-block-uagb-icon-list .wp-block-uagb-icon-list-child{margin-left: 0;margin-right: 0;margin-bottom: 10px;}}@media only screen and (max-width: 767px) {.wp-block-uagb-icon-list.uagb-block-05af5053 .uagb-icon-list__source-image{width: 16px;}.wp-block-uagb-icon-list.uagb-block-05af5053 .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap svg{width: 16px;height: 16px;font-size: 16px;}.wp-block-uagb-icon-list.uagb-block-05af5053 .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap{padding: 0px;border-width: 0px;align-self: center;}.wp-block-uagb-icon-list.uagb-block-05af5053 .uagb-icon-list__wrap{display: flex;flex-direction: column;justify-content: center;-webkit-box-pack: center;-ms-flex-pack: center;-webkit-box-align: flex-start;-ms-flex-align: flex-start;align-items: flex-start;}.wp-block-uagb-icon-list.uagb-block-05af5053.wp-block-uagb-icon-list .wp-block-uagb-icon-list-child{margin-left: 0;margin-right: 0;margin-bottom: 10px;}}.uagb-block-554ddbfc.wp-block-uagb-image{margin-top: 1px;margin-right: 1px;margin-bottom: 1px;margin-left: 1px;text-align: center;justify-content: center;align-self: center;}.uagb-block-554ddbfc .wp-block-uagb-image__figure{align-items: center;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-default figure img{box-shadow: 0px 0px 0 #00000070;border-color: #FFFFFF;}.uagb-block-554ddbfc.wp-block-uagb-image .wp-block-uagb-image__figure figcaption{font-style: normal;text-align: center;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-overlay figure img{box-shadow: 0px 0px 0 #00000070;border-color: #FFFFFF;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__color-wrapper{opacity: 0.2;border-color: #FFFFFF;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner{left: 15px;right: 15px;top: 15px;bottom: 15px;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-heading{font-style: normal;color: #fff;opacity: 1;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-heading a{color: #fff;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-caption{opacity: 0;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-overlay .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__color-wrapper{opacity: 1;}.uagb-block-554ddbfc.wp-block-uagb-image .wp-block-uagb-image--layout-overlay__inner .uagb-image-separator{width: 30%;border-top-width: 2px;border-top-color: #fff;opacity: 0;}.uagb-block-554ddbfc.wp-block-uagb-image .wp-block-uagb-image__figure img{width: 159px;height: auto;}.uagb-block-554ddbfc.wp-block-uagb-image .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__inner .uagb-image-caption{opacity: 1;}.uagb-block-554ddbfc.wp-block-uagb-image .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__inner .uagb-image-separator{opacity: 1;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-default figure img:hover{box-shadow: 0px 0px 0 #00000070;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-overlay figure img:hover{box-shadow: 0px 0px 0 #00000070;}@media only screen and (max-width: 976px) {.uagb-block-554ddbfc.wp-block-uagb-image--layout-default figure img{border-color: #FFFFFF;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-overlay figure img{border-color: #FFFFFF;}.uagb-block-554ddbfc.wp-block-uagb-image .wp-block-uagb-image__figure img{width: 159px;height: auto;}}@media only screen and (max-width: 767px) {.uagb-block-554ddbfc.wp-block-uagb-image--layout-default figure img{border-color: #FFFFFF;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-overlay figure img{border-color: #FFFFFF;}.uagb-block-554ddbfc.wp-block-uagb-image .wp-block-uagb-image__figure img{width: 159px;height: auto;}}",
                                "js": "",
                                "current_block_list": [
                                    "uagb\/icon-list",
                                    "uagb\/icon-list-child",
                                    "core\/image",
                                    "core\/paragraph",
                                    "ultimate-post\/image",
                                    "uagb\/image"
                                ],
                                "uag_flag": true,
                                "uag_version": "1694615274",
                                "gfonts": [],
                                "gfonts_url": "",
                                "gfonts_files": [],
                                "uag_faq_layout": false
                            }
                        },
                        {
                            "name": "phone",
                            "id": 20,
                            "label": "Phone",
                            "description": "",
                            "weight": 2,
                            "type": "phone",
                            "required": "0",
                            "text_allow_shortcode": "0",
                            "text_allow_html": "0",
                            "phone_format": "999-999-9999 x999",
                            "phone_enable_phone_extension": "1",
                            "phone_max_length": "25",
                            "phone_html5": "0",
                            "paragraph_allow_html": "1",
                            "paragraph_oembed": "0",
                            "paragraph_wptexturize": "1",
                            "paragraph_convert_chars": "1",
                            "paragraph_wpautop": "1",
                            "paragraph_allow_shortcode": "0",
                            "wysiwyg_media_buttons": "1",
                            "wysiwyg_oembed": "0",
                            "wysiwyg_wptexturize": "1",
                            "wysiwyg_convert_chars": "1",
                            "wysiwyg_wpautop": "1",
                            "wysiwyg_allow_shortcode": "0",
                            "code_allow_shortcode": "0",
                            "oembed_enabled_providers_amazoncn": "0",
                            "oembed_enabled_providers_amazoncouk": "0",
                            "oembed_enabled_providers_amazoncom": "0",
                            "oembed_enabled_providers_amazoncomau": "0",
                            "oembed_enabled_providers_amazonin": "0",
                            "oembed_enabled_providers_animotocom": "0",
                            "oembed_enabled_providers_cloudupcom": "0",
                            "oembed_enabled_providers_crowdsignalcom": "0",
                            "oembed_enabled_providers_dailymotioncom": "0",
                            "oembed_enabled_providers_flickrcom": "0",
                            "oembed_enabled_providers_imgurcom": "0",
                            "oembed_enabled_providers_issuucom": "0",
                            "oembed_enabled_providers_kickstartercom": "0",
                            "oembed_enabled_providers_meetupcom": "0",
                            "oembed_enabled_providers_mixcloudcom": "0",
                            "oembed_enabled_providers_redditcom": "0",
                            "oembed_enabled_providers_reverbnationcom": "0",
                            "oembed_enabled_providers_screencastcom": "0",
                            "oembed_enabled_providers_scribdcom": "0",
                            "oembed_enabled_providers_slidesharenet": "0",
                            "oembed_enabled_providers_smugmugcom": "0",
                            "oembed_enabled_providers_someecardscom": "0",
                            "oembed_enabled_providers_soundcloudcom": "0",
                            "oembed_enabled_providers_speakerdeckcom": "0",
                            "oembed_enabled_providers_spotifycom": "0",
                            "oembed_enabled_providers_tedcom": "0",
                            "oembed_enabled_providers_tiktokcom": "0",
                            "oembed_enabled_providers_tumblrcom": "0",
                            "oembed_enabled_providers_twittercom": "0",
                            "oembed_enabled_providers_vimeocom": "0",
                            "oembed_enabled_providers_wordpresscom": "0",
                            "oembed_enabled_providers_wordpresstv": "0",
                            "oembed_enabled_providers_youtubecom": "0",
                            "admin_only": "0",
                            "restrict_role": "0",
                            "restrict_capability": "0",
                            "hidden": "0",
                            "read_only": "0",
                            "roles_allowed": [
                                "administrator"
                            ],
                            "unique": "0",
                            "phone_repeatable": "0",
                            "_uag_page_assets": {
                                "css": ".wp-block-uagb-icon-list.uagb-block-05af5053 .uagb-icon-list__source-image{width: 16px;}.wp-block-uagb-icon-list.uagb-block-05af5053 .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap svg{width: 16px;height: 16px;font-size: 16px;color: #afafaf;fill: #afafaf;}.wp-block-uagb-icon-list.uagb-block-05af5053 .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap{padding: 0px;border-radius: 0px;border-width: 0px;align-self: center;}.wp-block-uagb-icon-list.uagb-block-05af5053 .wp-block-uagb-icon-list-child .uagb-icon-list__label{text-decoration: !important;font-style: oblique;line-height: em;color: #afafaf;}.wp-block-uagb-icon-list.uagb-block-05af5053 .uagb-icon-list__wrap{display: flex;flex-direction: column;justify-content: center;-webkit-box-pack: center;-ms-flex-pack: center;-webkit-box-align: flex-start;-ms-flex-align: flex-start;align-items: flex-start;}.wp-block-uagb-icon-list.uagb-block-05af5053 .uagb-icon-list__label{text-align: left;}.wp-block-uagb-icon-list.uagb-block-05af5053 .wp-block-uagb-icon-list-child{text-decoration: !important;font-style: oblique;line-height: em;}.wp-block-uagb-icon-list.uagb-block-05af5053.wp-block-uagb-icon-list .wp-block-uagb-icon-list-child{margin-left: 0;margin-right: 0;margin-bottom: 10px;}.wp-block-uagb-icon-list.uagb-block-05af5053 .uagb-icon-list__source-wrap{margin-right: 15px;}.uagb-block-4e10e5b8.wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap{background:  !important;border-color:  !important;}.uagb-block-4e10e5b8.wp-block-uagb-icon-list-child:hover .uagb-icon-list__source-wrap{background:  !important;border-color:  !important;}.uagb-block-9d934b0c.wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap{background:  !important;border-color:  !important;}.uagb-block-9d934b0c.wp-block-uagb-icon-list-child:hover .uagb-icon-list__source-wrap{background:  !important;border-color:  !important;}.uagb-block-a149a034.wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap{background:  !important;border-color:  !important;}.uagb-block-a149a034.wp-block-uagb-icon-list-child:hover .uagb-icon-list__source-wrap{background:  !important;border-color:  !important;}@media only screen and (max-width: 976px) {.wp-block-uagb-icon-list.uagb-block-05af5053 .uagb-icon-list__source-image{width: 16px;}.wp-block-uagb-icon-list.uagb-block-05af5053 .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap svg{width: 16px;height: 16px;font-size: 16px;}.wp-block-uagb-icon-list.uagb-block-05af5053 .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap {padding: 0px;border-width: 0px;align-self: center;}.wp-block-uagb-icon-list.uagb-block-05af5053 .uagb-icon-list__wrap{display: flex;flex-direction: column;justify-content: center;-webkit-box-pack: center;-ms-flex-pack: center;-webkit-box-align: flex-start;-ms-flex-align: flex-start;align-items: flex-start;}.wp-block-uagb-icon-list.uagb-block-05af5053.wp-block-uagb-icon-list .wp-block-uagb-icon-list-child{margin-left: 0;margin-right: 0;margin-bottom: 10px;}}@media only screen and (max-width: 767px) {.wp-block-uagb-icon-list.uagb-block-05af5053 .uagb-icon-list__source-image{width: 16px;}.wp-block-uagb-icon-list.uagb-block-05af5053 .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap svg{width: 16px;height: 16px;font-size: 16px;}.wp-block-uagb-icon-list.uagb-block-05af5053 .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap{padding: 0px;border-width: 0px;align-self: center;}.wp-block-uagb-icon-list.uagb-block-05af5053 .uagb-icon-list__wrap{display: flex;flex-direction: column;justify-content: center;-webkit-box-pack: center;-ms-flex-pack: center;-webkit-box-align: flex-start;-ms-flex-align: flex-start;align-items: flex-start;}.wp-block-uagb-icon-list.uagb-block-05af5053.wp-block-uagb-icon-list .wp-block-uagb-icon-list-child{margin-left: 0;margin-right: 0;margin-bottom: 10px;}}.uagb-block-554ddbfc.wp-block-uagb-image{margin-top: 1px;margin-right: 1px;margin-bottom: 1px;margin-left: 1px;text-align: center;justify-content: center;align-self: center;}.uagb-block-554ddbfc .wp-block-uagb-image__figure{align-items: center;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-default figure img{box-shadow: 0px 0px 0 #00000070;border-color: #FFFFFF;}.uagb-block-554ddbfc.wp-block-uagb-image .wp-block-uagb-image__figure figcaption{font-style: normal;text-align: center;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-overlay figure img{box-shadow: 0px 0px 0 #00000070;border-color: #FFFFFF;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__color-wrapper{opacity: 0.2;border-color: #FFFFFF;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner{left: 15px;right: 15px;top: 15px;bottom: 15px;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-heading{font-style: normal;color: #fff;opacity: 1;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-heading a{color: #fff;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-caption{opacity: 0;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-overlay .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__color-wrapper{opacity: 1;}.uagb-block-554ddbfc.wp-block-uagb-image .wp-block-uagb-image--layout-overlay__inner .uagb-image-separator{width: 30%;border-top-width: 2px;border-top-color: #fff;opacity: 0;}.uagb-block-554ddbfc.wp-block-uagb-image .wp-block-uagb-image__figure img{width: 159px;height: auto;}.uagb-block-554ddbfc.wp-block-uagb-image .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__inner .uagb-image-caption{opacity: 1;}.uagb-block-554ddbfc.wp-block-uagb-image .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__inner .uagb-image-separator{opacity: 1;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-default figure img:hover{box-shadow: 0px 0px 0 #00000070;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-overlay figure img:hover{box-shadow: 0px 0px 0 #00000070;}@media only screen and (max-width: 976px) {.uagb-block-554ddbfc.wp-block-uagb-image--layout-default figure img{border-color: #FFFFFF;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-overlay figure img{border-color: #FFFFFF;}.uagb-block-554ddbfc.wp-block-uagb-image .wp-block-uagb-image__figure img{width: 159px;height: auto;}}@media only screen and (max-width: 767px) {.uagb-block-554ddbfc.wp-block-uagb-image--layout-default figure img{border-color: #FFFFFF;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-overlay figure img{border-color: #FFFFFF;}.uagb-block-554ddbfc.wp-block-uagb-image .wp-block-uagb-image__figure img{width: 159px;height: auto;}}",
                                "js": "",
                                "current_block_list": [
                                    "uagb\/icon-list",
                                    "uagb\/icon-list-child",
                                    "core\/image",
                                    "core\/paragraph",
                                    "ultimate-post\/image",
                                    "uagb\/image"
                                ],
                                "uag_flag": true,
                                "uag_version": "1695430487",
                                "gfonts": [],
                                "gfonts_url": "",
                                "gfonts_files": [],
                                "uag_faq_layout": false
                            }
                        },
                        {
                            "name": "cancel",
                            "id": 21,
                            "label": "Cancellation Policy",
                            "description": "",
                            "weight": 3,
                            "type": "wysiwyg",
                            "required": "0",
                            "text_allow_shortcode": "0",
                            "text_allow_html": "0",
                            "phone_enable_phone_extension": "1",
                            "paragraph_allow_html": "1",
                            "paragraph_oembed": "0",
                            "paragraph_wptexturize": "1",
                            "paragraph_convert_chars": "1",
                            "paragraph_wpautop": "1",
                            "paragraph_allow_shortcode": "0",
                            "wysiwyg_editor": "tinymce",
                            "wysiwyg_media_buttons": "1",
                            "wysiwyg_oembed": "0",
                            "wysiwyg_wptexturize": "1",
                            "wysiwyg_convert_chars": "1",
                            "wysiwyg_wpautop": "1",
                            "wysiwyg_allow_shortcode": "0",
                            "code_allow_shortcode": "0",
                            "oembed_enabled_providers_amazoncn": "0",
                            "oembed_enabled_providers_amazoncouk": "0",
                            "oembed_enabled_providers_amazoncom": "0",
                            "oembed_enabled_providers_amazoncomau": "0",
                            "oembed_enabled_providers_amazonin": "0",
                            "oembed_enabled_providers_animotocom": "0",
                            "oembed_enabled_providers_cloudupcom": "0",
                            "oembed_enabled_providers_crowdsignalcom": "0",
                            "oembed_enabled_providers_dailymotioncom": "0",
                            "oembed_enabled_providers_flickrcom": "0",
                            "oembed_enabled_providers_imgurcom": "0",
                            "oembed_enabled_providers_issuucom": "0",
                            "oembed_enabled_providers_kickstartercom": "0",
                            "oembed_enabled_providers_meetupcom": "0",
                            "oembed_enabled_providers_mixcloudcom": "0",
                            "oembed_enabled_providers_redditcom": "0",
                            "oembed_enabled_providers_reverbnationcom": "0",
                            "oembed_enabled_providers_screencastcom": "0",
                            "oembed_enabled_providers_scribdcom": "0",
                            "oembed_enabled_providers_slidesharenet": "0",
                            "oembed_enabled_providers_smugmugcom": "0",
                            "oembed_enabled_providers_someecardscom": "0",
                            "oembed_enabled_providers_soundcloudcom": "0",
                            "oembed_enabled_providers_speakerdeckcom": "0",
                            "oembed_enabled_providers_spotifycom": "0",
                            "oembed_enabled_providers_tedcom": "0",
                            "oembed_enabled_providers_tiktokcom": "0",
                            "oembed_enabled_providers_tumblrcom": "0",
                            "oembed_enabled_providers_twittercom": "0",
                            "oembed_enabled_providers_vimeocom": "0",
                            "oembed_enabled_providers_wordpresscom": "0",
                            "oembed_enabled_providers_wordpresstv": "0",
                            "oembed_enabled_providers_youtubecom": "0",
                            "admin_only": "0",
                            "restrict_role": "0",
                            "restrict_capability": "0",
                            "hidden": "0",
                            "read_only": "0",
                            "roles_allowed": [
                                "administrator"
                            ],
                            "unique": "0",
                            "wysiwyg_repeatable": "0",
                            "_uag_page_assets": {
                                "css": ".wp-block-uagb-icon-list.uagb-block-05af5053 .uagb-icon-list__source-image{width: 16px;}.wp-block-uagb-icon-list.uagb-block-05af5053 .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap svg{width: 16px;height: 16px;font-size: 16px;color: #afafaf;fill: #afafaf;}.wp-block-uagb-icon-list.uagb-block-05af5053 .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap{padding: 0px;border-radius: 0px;border-width: 0px;align-self: center;}.wp-block-uagb-icon-list.uagb-block-05af5053 .wp-block-uagb-icon-list-child .uagb-icon-list__label{text-decoration: !important;font-style: oblique;line-height: em;color: #afafaf;}.wp-block-uagb-icon-list.uagb-block-05af5053 .uagb-icon-list__wrap{display: flex;flex-direction: column;justify-content: center;-webkit-box-pack: center;-ms-flex-pack: center;-webkit-box-align: flex-start;-ms-flex-align: flex-start;align-items: flex-start;}.wp-block-uagb-icon-list.uagb-block-05af5053 .uagb-icon-list__label{text-align: left;}.wp-block-uagb-icon-list.uagb-block-05af5053 .wp-block-uagb-icon-list-child{text-decoration: !important;font-style: oblique;line-height: em;}.wp-block-uagb-icon-list.uagb-block-05af5053.wp-block-uagb-icon-list .wp-block-uagb-icon-list-child{margin-left: 0;margin-right: 0;margin-bottom: 10px;}.wp-block-uagb-icon-list.uagb-block-05af5053 .uagb-icon-list__source-wrap{margin-right: 15px;}.uagb-block-4e10e5b8.wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap{background:  !important;border-color:  !important;}.uagb-block-4e10e5b8.wp-block-uagb-icon-list-child:hover .uagb-icon-list__source-wrap{background:  !important;border-color:  !important;}.uagb-block-9d934b0c.wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap{background:  !important;border-color:  !important;}.uagb-block-9d934b0c.wp-block-uagb-icon-list-child:hover .uagb-icon-list__source-wrap{background:  !important;border-color:  !important;}.uagb-block-a149a034.wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap{background:  !important;border-color:  !important;}.uagb-block-a149a034.wp-block-uagb-icon-list-child:hover .uagb-icon-list__source-wrap{background:  !important;border-color:  !important;}@media only screen and (max-width: 976px) {.wp-block-uagb-icon-list.uagb-block-05af5053 .uagb-icon-list__source-image{width: 16px;}.wp-block-uagb-icon-list.uagb-block-05af5053 .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap svg{width: 16px;height: 16px;font-size: 16px;}.wp-block-uagb-icon-list.uagb-block-05af5053 .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap {padding: 0px;border-width: 0px;align-self: center;}.wp-block-uagb-icon-list.uagb-block-05af5053 .uagb-icon-list__wrap{display: flex;flex-direction: column;justify-content: center;-webkit-box-pack: center;-ms-flex-pack: center;-webkit-box-align: flex-start;-ms-flex-align: flex-start;align-items: flex-start;}.wp-block-uagb-icon-list.uagb-block-05af5053.wp-block-uagb-icon-list .wp-block-uagb-icon-list-child{margin-left: 0;margin-right: 0;margin-bottom: 10px;}}@media only screen and (max-width: 767px) {.wp-block-uagb-icon-list.uagb-block-05af5053 .uagb-icon-list__source-image{width: 16px;}.wp-block-uagb-icon-list.uagb-block-05af5053 .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap svg{width: 16px;height: 16px;font-size: 16px;}.wp-block-uagb-icon-list.uagb-block-05af5053 .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap{padding: 0px;border-width: 0px;align-self: center;}.wp-block-uagb-icon-list.uagb-block-05af5053 .uagb-icon-list__wrap{display: flex;flex-direction: column;justify-content: center;-webkit-box-pack: center;-ms-flex-pack: center;-webkit-box-align: flex-start;-ms-flex-align: flex-start;align-items: flex-start;}.wp-block-uagb-icon-list.uagb-block-05af5053.wp-block-uagb-icon-list .wp-block-uagb-icon-list-child{margin-left: 0;margin-right: 0;margin-bottom: 10px;}}.uagb-block-554ddbfc.wp-block-uagb-image{margin-top: 1px;margin-right: 1px;margin-bottom: 1px;margin-left: 1px;text-align: center;justify-content: center;align-self: center;}.uagb-block-554ddbfc .wp-block-uagb-image__figure{align-items: center;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-default figure img{box-shadow: 0px 0px 0 #00000070;border-color: #FFFFFF;}.uagb-block-554ddbfc.wp-block-uagb-image .wp-block-uagb-image__figure figcaption{font-style: normal;text-align: center;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-overlay figure img{box-shadow: 0px 0px 0 #00000070;border-color: #FFFFFF;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__color-wrapper{opacity: 0.2;border-color: #FFFFFF;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner{left: 15px;right: 15px;top: 15px;bottom: 15px;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-heading{font-style: normal;color: #fff;opacity: 1;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-heading a{color: #fff;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-caption{opacity: 0;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-overlay .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__color-wrapper{opacity: 1;}.uagb-block-554ddbfc.wp-block-uagb-image .wp-block-uagb-image--layout-overlay__inner .uagb-image-separator{width: 30%;border-top-width: 2px;border-top-color: #fff;opacity: 0;}.uagb-block-554ddbfc.wp-block-uagb-image .wp-block-uagb-image__figure img{width: 159px;height: auto;}.uagb-block-554ddbfc.wp-block-uagb-image .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__inner .uagb-image-caption{opacity: 1;}.uagb-block-554ddbfc.wp-block-uagb-image .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__inner .uagb-image-separator{opacity: 1;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-default figure img:hover{box-shadow: 0px 0px 0 #00000070;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-overlay figure img:hover{box-shadow: 0px 0px 0 #00000070;}@media only screen and (max-width: 976px) {.uagb-block-554ddbfc.wp-block-uagb-image--layout-default figure img{border-color: #FFFFFF;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-overlay figure img{border-color: #FFFFFF;}.uagb-block-554ddbfc.wp-block-uagb-image .wp-block-uagb-image__figure img{width: 159px;height: auto;}}@media only screen and (max-width: 767px) {.uagb-block-554ddbfc.wp-block-uagb-image--layout-default figure img{border-color: #FFFFFF;}.uagb-block-554ddbfc.wp-block-uagb-image--layout-overlay figure img{border-color: #FFFFFF;}.uagb-block-554ddbfc.wp-block-uagb-image .wp-block-uagb-image__figure img{width: 159px;height: auto;}}",
                                "js": "",
                                "current_block_list": [
                                    "uagb\/icon-list",
                                    "uagb\/icon-list-child",
                                    "core\/image",
                                    "core\/paragraph",
                                    "ultimate-post\/image",
                                    "uagb\/image"
                                ],
                                "uag_flag": true,
                                "uag_version": "1693920907",
                                "gfonts": [],
                                "gfonts_url": "",
                                "gfonts_files": [],
                                "uag_faq_layout": false
                            }
                        },
                        {
                            "name": "covid",
                            "id": 22,
                            "label": "Covid Policy",
                            "description": "",
                            "weight": 4,
                            "type": "wysiwyg",
                            "required": "0",
                            "text_allow_shortcode": "0",
                            "text_allow_html": "0",
                            "phone_enable_phone_extension": "1",
                            "paragraph_allow_html": "1",
                            "paragraph_oembed": "0",
                            "paragraph_wptexturize": "1",
                            "paragraph_convert_chars": "1",
                            "paragraph_wpautop": "1",
                            "paragraph_allow_shortcode": "0",
                            "wysiwyg_editor": "tinymce",
                            "wysiwyg_media_buttons": "1",
                            "wysiwyg_oembed": "0",
                            "wysiwyg_wptexturize": "1",
                            "wysiwyg_convert_chars": "1",
                            "wysiwyg_wpautop": "1",
                            "wysiwyg_allow_shortcode": "0",
                            "code_allow_shortcode": "0",
                            "oembed_enabled_providers_amazoncn": "0",
                            "oembed_enabled_providers_amazoncouk": "0",
                            "oembed_enabled_providers_amazoncom": "0",
                            "oembed_enabled_providers_amazoncomau": "0",
                            "oembed_enabled_providers_amazonin": "0",
                            "oembed_enabled_providers_animotocom": "0",
                            "oembed_enabled_providers_cloudupcom": "0",
                            "oembed_enabled_providers_crowdsignalcom": "0",
                            "oembed_enabled_providers_dailymotioncom": "0",
                            "oembed_enabled_providers_flickrcom": "0",
                            "oembed_enabled_providers_imgurcom": "0",
                            "oembed_enabled_providers_issuucom": "0",
                            "oembed_enabled_providers_kickstartercom": "0",
                            "oembed_enabled_providers_meetupcom": "0",
                            "oembed_enabled_providers_mixcloudcom": "0",
                            "oembed_enabled_providers_redditcom": "0",
                            "oembed_enabled_providers_reverbnationcom": "0",
                            "oembed_enabled_providers_screencastcom": "0",
                            "oembed_enabled_providers_scribdcom": "0",
                            "oembed_enabled_providers_slidesharenet": "0",
                            "oembed_enabled_providers_smugmugcom": "0",
                            "oembed_enabled_providers_someecardscom": "0",
                            "oembed_enabled_providers_soundcloudcom": "0",
                            "oembed_enabled_providers_speakerdeckcom": "0",
                            "oembed_enabled_providers_spotifycom": "0",
                            "oembed_enabled_providers_tedcom": "0",
                            "oembed_enabled_providers_tiktokcom": "0",
                            "oembed_enabled_providers_tumblrcom": "0",
                            "oembed_enabled_providers_twittercom": "0",
                            "oembed_enabled_providers_vimeocom": "0",
                            "oembed_enabled_providers_wordpresscom": "0",
                            "oembed_enabled_providers_wordpresstv": "0",
                            "oembed_enabled_providers_youtubecom": "0",
                            "admin_only": "0",
                            "restrict_role": "0",
                            "restrict_capability": "0",
                            "hidden": "0",
                            "read_only": "0",
                            "roles_allowed": [
                                "administrator"
                            ],
                            "unique": "0",
                            "wysiwyg_repeatable": "0"
                        },
                        {
                            "name": "about_us",
                            "id": 114,
                            "label": "About Us",
                            "description": "",
                            "weight": 5,
                            "type": "wysiwyg",
                            "required": "0",
                            "text_allow_shortcode": "0",
                            "text_allow_html": "0",
                            "phone_enable_phone_extension": "1",
                            "paragraph_allow_html": "1",
                            "paragraph_oembed": "0",
                            "paragraph_wptexturize": "1",
                            "paragraph_convert_chars": "1",
                            "paragraph_wpautop": "1",
                            "paragraph_allow_shortcode": "0",
                            "wysiwyg_editor": "tinymce",
                            "wysiwyg_media_buttons": "1",
                            "wysiwyg_oembed": "0",
                            "wysiwyg_wptexturize": "1",
                            "wysiwyg_convert_chars": "1",
                            "wysiwyg_wpautop": "1",
                            "wysiwyg_allow_shortcode": "0",
                            "code_allow_shortcode": "0",
                            "oembed_enabled_providers_amazoncn": "0",
                            "oembed_enabled_providers_amazoncouk": "0",
                            "oembed_enabled_providers_amazoncom": "0",
                            "oembed_enabled_providers_amazoncomau": "0",
                            "oembed_enabled_providers_amazonin": "0",
                            "oembed_enabled_providers_animotocom": "0",
                            "oembed_enabled_providers_cloudupcom": "0",
                            "oembed_enabled_providers_crowdsignalcom": "0",
                            "oembed_enabled_providers_dailymotioncom": "0",
                            "oembed_enabled_providers_flickrcom": "0",
                            "oembed_enabled_providers_imgurcom": "0",
                            "oembed_enabled_providers_issuucom": "0",
                            "oembed_enabled_providers_kickstartercom": "0",
                            "oembed_enabled_providers_meetupcom": "0",
                            "oembed_enabled_providers_mixcloudcom": "0",
                            "oembed_enabled_providers_redditcom": "0",
                            "oembed_enabled_providers_reverbnationcom": "0",
                            "oembed_enabled_providers_screencastcom": "0",
                            "oembed_enabled_providers_scribdcom": "0",
                            "oembed_enabled_providers_slidesharenet": "0",
                            "oembed_enabled_providers_smugmugcom": "0",
                            "oembed_enabled_providers_someecardscom": "0",
                            "oembed_enabled_providers_soundcloudcom": "0",
                            "oembed_enabled_providers_speakerdeckcom": "0",
                            "oembed_enabled_providers_spotifycom": "0",
                            "oembed_enabled_providers_tedcom": "0",
                            "oembed_enabled_providers_tiktokcom": "0",
                            "oembed_enabled_providers_tumblrcom": "0",
                            "oembed_enabled_providers_twittercom": "0",
                            "oembed_enabled_providers_vimeocom": "0",
                            "oembed_enabled_providers_wordpresscom": "0",
                            "oembed_enabled_providers_wordpresstv": "0",
                            "oembed_enabled_providers_youtubecom": "0",
                            "maps": "0",
                            "maps_autocorrect": "0",
                            "maps_display": "replace",
                            "maps_style": "static",
                            "maps_type": "roadmap",
                            "maps_zoom": "12",
                            "maps_scrollwheel": "1",
                            "maps_info_window": "0",
                            "maps_info_window_content": "paragraph",
                            "maps_info_window_template": "59",
                            "admin_only": "0",
                            "restrict_role": "0",
                            "restrict_capability": "0",
                            "hidden": "0",
                            "read_only": "0",
                            "roles_allowed": [
                                "administrator"
                            ],
                            "unique": "0",
                            "wysiwyg_repeatable": "0"
                        },
                        {
                            "name": "bring",
                            "id": 380,
                            "label": "What to Bring",
                            "description": "",
                            "weight": 6,
                            "type": "wysiwyg",
                            "required": "0",
                            "text_allow_shortcode": "0",
                            "text_allow_html": "0",
                            "phone_enable_phone_extension": "1",
                            "paragraph_allow_html": "1",
                            "paragraph_oembed": "0",
                            "paragraph_wptexturize": "1",
                            "paragraph_convert_chars": "1",
                            "paragraph_wpautop": "1",
                            "paragraph_allow_shortcode": "0",
                            "wysiwyg_editor": "tinymce",
                            "wysiwyg_media_buttons": "1",
                            "wysiwyg_oembed": "0",
                            "wysiwyg_wptexturize": "1",
                            "wysiwyg_convert_chars": "1",
                            "wysiwyg_wpautop": "1",
                            "wysiwyg_allow_shortcode": "0",
                            "code_allow_shortcode": "0",
                            "oembed_enabled_providers_amazoncn": "0",
                            "oembed_enabled_providers_amazoncouk": "0",
                            "oembed_enabled_providers_amazoncom": "0",
                            "oembed_enabled_providers_amazoncomau": "0",
                            "oembed_enabled_providers_amazonin": "0",
                            "oembed_enabled_providers_animotocom": "0",
                            "oembed_enabled_providers_cloudupcom": "0",
                            "oembed_enabled_providers_crowdsignalcom": "0",
                            "oembed_enabled_providers_dailymotioncom": "0",
                            "oembed_enabled_providers_flickrcom": "0",
                            "oembed_enabled_providers_imgurcom": "0",
                            "oembed_enabled_providers_issuucom": "0",
                            "oembed_enabled_providers_kickstartercom": "0",
                            "oembed_enabled_providers_meetupcom": "0",
                            "oembed_enabled_providers_mixcloudcom": "0",
                            "oembed_enabled_providers_redditcom": "0",
                            "oembed_enabled_providers_reverbnationcom": "0",
                            "oembed_enabled_providers_screencastcom": "0",
                            "oembed_enabled_providers_scribdcom": "0",
                            "oembed_enabled_providers_slidesharenet": "0",
                            "oembed_enabled_providers_smugmugcom": "0",
                            "oembed_enabled_providers_someecardscom": "0",
                            "oembed_enabled_providers_soundcloudcom": "0",
                            "oembed_enabled_providers_speakerdeckcom": "0",
                            "oembed_enabled_providers_spotifycom": "0",
                            "oembed_enabled_providers_tedcom": "0",
                            "oembed_enabled_providers_tiktokcom": "0",
                            "oembed_enabled_providers_tumblrcom": "0",
                            "oembed_enabled_providers_twittercom": "0",
                            "oembed_enabled_providers_vimeocom": "0",
                            "oembed_enabled_providers_wordpresscom": "0",
                            "oembed_enabled_providers_wordpresstv": "0",
                            "oembed_enabled_providers_youtubecom": "0",
                            "maps": "0",
                            "maps_autocorrect": "0",
                            "maps_display": "replace",
                            "maps_style": "static",
                            "maps_type": "roadmap",
                            "maps_zoom": "12",
                            "maps_scrollwheel": "1",
                            "maps_info_window": "0",
                            "maps_info_window_content": "paragraph",
                            "maps_info_window_template": "69",
                            "admin_only": "0",
                            "restrict_role": "0",
                            "restrict_capability": "0",
                            "hidden": "0",
                            "read_only": "0",
                            "roles_allowed": [
                                "administrator"
                            ],
                            "unique": "0",
                            "wysiwyg_repeatable": "0"
                        },
                        {
                            "name": "sorry",
                            "id": 981,
                            "label": "Sorry we missed you",
                            "description": "",
                            "weight": 7,
                            "type": "wysiwyg",
                            "required": "0",
                            "text_allow_shortcode": "0",
                            "text_allow_html": "0",
                            "phone_enable_phone_extension": "1",
                            "paragraph_allow_html": "1",
                            "paragraph_oembed": "0",
                            "paragraph_wptexturize": "1",
                            "paragraph_convert_chars": "1",
                            "paragraph_wpautop": "1",
                            "paragraph_allow_shortcode": "0",
                            "wysiwyg_editor": "tinymce",
                            "wysiwyg_media_buttons": "1",
                            "wysiwyg_oembed": "0",
                            "wysiwyg_wptexturize": "1",
                            "wysiwyg_convert_chars": "1",
                            "wysiwyg_wpautop": "1",
                            "wysiwyg_allow_shortcode": "0",
                            "code_allow_shortcode": "0",
                            "oembed_enabled_providers_amazoncn": "0",
                            "oembed_enabled_providers_amazoncouk": "0",
                            "oembed_enabled_providers_amazoncom": "0",
                            "oembed_enabled_providers_amazoncomau": "0",
                            "oembed_enabled_providers_amazonin": "0",
                            "oembed_enabled_providers_animotocom": "0",
                            "oembed_enabled_providers_cloudupcom": "0",
                            "oembed_enabled_providers_crowdsignalcom": "0",
                            "oembed_enabled_providers_dailymotioncom": "0",
                            "oembed_enabled_providers_flickrcom": "0",
                            "oembed_enabled_providers_imgurcom": "0",
                            "oembed_enabled_providers_issuucom": "0",
                            "oembed_enabled_providers_kickstartercom": "0",
                            "oembed_enabled_providers_meetupcom": "0",
                            "oembed_enabled_providers_mixcloudcom": "0",
                            "oembed_enabled_providers_redditcom": "0",
                            "oembed_enabled_providers_reverbnationcom": "0",
                            "oembed_enabled_providers_screencastcom": "0",
                            "oembed_enabled_providers_scribdcom": "0",
                            "oembed_enabled_providers_slidesharenet": "0",
                            "oembed_enabled_providers_smugmugcom": "0",
                            "oembed_enabled_providers_someecardscom": "0",
                            "oembed_enabled_providers_soundcloudcom": "0",
                            "oembed_enabled_providers_speakerdeckcom": "0",
                            "oembed_enabled_providers_spotifycom": "0",
                            "oembed_enabled_providers_tedcom": "0",
                            "oembed_enabled_providers_tiktokcom": "0",
                            "oembed_enabled_providers_tumblrcom": "0",
                            "oembed_enabled_providers_twittercom": "0",
                            "oembed_enabled_providers_vimeocom": "0",
                            "oembed_enabled_providers_wordpresscom": "0",
                            "oembed_enabled_providers_wordpresstv": "0",
                            "oembed_enabled_providers_youtubecom": "0",
                            "maps": "0",
                            "maps_autocorrect": "0",
                            "maps_display": "replace",
                            "maps_style": "static",
                            "maps_type": "roadmap",
                            "maps_zoom": "12",
                            "maps_scrollwheel": "1",
                            "maps_info_window": "0",
                            "maps_info_window_content": "paragraph",
                            "maps_info_window_template": "526",
                            "admin_only": "0",
                            "restrict_role": "0",
                            "restrict_capability": "0",
                            "hidden": "0",
                            "read_only": "0",
                            "roles_allowed": [
                                "administrator"
                            ]
                        }
                    ]
                }
            ]
        },
        {
            "name": "post",
            "id": 218,
            "label": "Post",
            "description": "",
            "type": "post_type",
            "storage": "meta",
            "object": "post",
            "pfat_enable": "1",
            "pfat_append_single": "replace",
            "pfat_filter_single": "the_content",
            "pfat_append_archive": "append",
            "pfat_filter_archive": "the_excerpt",
            "pfat_run_outside_loop": "0",
            "rest_enable": "1",
            "read_all": "0",
            "write_all": "0",
            "pfat_single": "Single Event Type",
            "_migrated_28": "1",
            "required": "0",
            "required_help_boolean": "0",
            "groups": [
                {
                    "name": "more_fields",
                    "id": 1075,
                    "label": "More Fields",
                    "description": "",
                    "weight": 0,
                    "fields": [
                        {
                            "name": "price",
                            "id": 219,
                            "label": "Price",
                            "description": "\"\/ person, plus tax \/ fees\" is added after whatever you enter here.",
                            "weight": 0,
                            "type": "text",
                            "required": "0",
                            "text_allow_shortcode": "0",
                            "text_allow_html": "0",
                            "text_allowed_html_tags": "strong em a ul ol li b i",
                            "text_max_length": "255",
                            "maps": "0",
                            "maps_autocorrect": "0",
                            "maps_display": "replace",
                            "maps_style": "static",
                            "maps_type": "roadmap",
                            "maps_zoom": "12",
                            "maps_scrollwheel": "1",
                            "maps_info_window": "0",
                            "maps_info_window_content": "paragraph",
                            "maps_info_window_template": "69",
                            "admin_only": "0",
                            "restrict_role": "0",
                            "restrict_capability": "0",
                            "hidden": "0",
                            "read_only": "0",
                            "roles_allowed": [
                                "administrator"
                            ],
                            "rest_read": "0",
                            "rest_write": "0",
                            "rest_pick_response": "array",
                            "rest_pick_depth": "2",
                            "unique": "0",
                            "text_repeatable": "0",
                            "post_status": "publish",
                            "sister_id": "-- Select One --"
                        },
                        {
                            "name": "instead_of_price",
                            "id": 1424,
                            "label": "Instead of Price",
                            "description": "Text entered here will be used in place of the price.",
                            "weight": 1,
                            "type": "text",
                            "sister_id": "-- Select One --",
                            "post_status": "publish",
                            "required": "0",
                            "text_allowed_html_tags": "strong em a ul ol li b i",
                            "text_max_length": "255",
                            "maps": "0",
                            "maps_autocorrect": "0",
                            "maps_display": "replace",
                            "maps_style": "static",
                            "maps_type": "roadmap",
                            "maps_zoom": "12",
                            "maps_scrollwheel": "1",
                            "maps_info_window": "0",
                            "maps_info_window_content": "paragraph",
                            "maps_info_window_template": "true",
                            "roles_allowed": "administrator",
                            "rest_pick_response": "array",
                            "rest_pick_depth": "1",
                            "required_help_boolean": "0",
                            "repeatable": "0",
                            "repeatable_format": "default"
                        },
                        {
                            "name": "related_dates",
                            "id": 220,
                            "label": "Related Occurences",
                            "description": "",
                            "weight": 2,
                            "type": "pick",
                            "pick_object": "post_type",
                            "pick_val": "date",
                            "required": "0",
                            "pick_format_type": "multi",
                            "pick_format_single": "dropdown",
                            "pick_format_multi": "list",
                            "pick_display_format_multi": "default",
                            "pick_display_format_separator": ", ",
                            "pick_allow_add_new": "1",
                            "pick_taggable": "0",
                            "pick_show_icon": "1",
                            "pick_show_edit_link": "1",
                            "pick_show_view_link": "1",
                            "pick_limit": "0",
                            "pick_post_status": [
                                "publish"
                            ],
                            "maps": "0",
                            "maps_autocorrect": "0",
                            "maps_display": "replace",
                            "maps_style": "static",
                            "maps_type": "roadmap",
                            "maps_zoom": "12",
                            "maps_scrollwheel": "1",
                            "maps_info_window": "0",
                            "maps_info_window_content": "paragraph",
                            "maps_info_window_template": "69",
                            "admin_only": "0",
                            "restrict_role": "0",
                            "restrict_capability": "0",
                            "hidden": "0",
                            "read_only": "0",
                            "roles_allowed": [
                                "administrator"
                            ],
                            "rest_read": "0",
                            "rest_write": "0",
                            "rest_pick_response": "array",
                            "rest_pick_depth": "2",
                            "unique": "0",
                            "sister_id": "30"
                        },
                        {
                            "name": "hide_dates",
                            "id": 1393,
                            "label": "Hide Dates",
                            "description": "Check here to hide the list of dates",
                            "weight": 3,
                            "type": "boolean",
                            "sister_id": "-- Select One --",
                            "post_status": "publish",
                            "required": "0",
                            "boolean_format_type": "checkbox",
                            "boolean_yes_label": "Yes",
                            "boolean_no_label": "No",
                            "maps": "0",
                            "maps_autocorrect": "0",
                            "maps_display": "replace",
                            "maps_style": "static",
                            "maps_type": "roadmap",
                            "maps_zoom": "12",
                            "maps_scrollwheel": "1",
                            "maps_info_window": "0",
                            "maps_info_window_content": "paragraph",
                            "maps_info_window_template": "true",
                            "roles_allowed": "administrator",
                            "rest_pick_response": "array",
                            "rest_pick_depth": "1"
                        },
                        {
                            "name": "show_instead",
                            "id": 1395,
                            "label": "Show Instead of Dates",
                            "description": "",
                            "weight": 4,
                            "type": "text",
                            "sister_id": "-- Select One --",
                            "post_status": "publish",
                            "required": "0",
                            "text_allowed_html_tags": "strong em a ul ol li b i",
                            "text_max_length": "255",
                            "maps": "0",
                            "maps_autocorrect": "0",
                            "maps_display": "replace",
                            "maps_style": "static",
                            "maps_type": "roadmap",
                            "maps_zoom": "12",
                            "maps_scrollwheel": "1",
                            "maps_info_window": "0",
                            "maps_info_window_content": "paragraph",
                            "maps_info_window_template": "true",
                            "roles_allowed": "administrator",
                            "rest_pick_response": "array",
                            "rest_pick_depth": "1"
                        },
                        {
                            "name": "related_description",
                            "id": 387,
                            "label": "Related Description",
                            "description": "This is so the correct details for What to Bring and What is included are displayed.  Leave Blank except for Level 1, 2 or Basic",
                            "weight": 5,
                            "type": "pick",
                            "pick_object": "post_type",
                            "pick_val": "description",
                            "required": "0",
                            "pick_format_type": "single",
                            "pick_format_single": "dropdown",
                            "pick_format_multi": "checkbox",
                            "pick_display_format_multi": "default",
                            "pick_display_format_separator": ", ",
                            "pick_allow_add_new": "1",
                            "pick_taggable": "0",
                            "pick_show_icon": "1",
                            "pick_show_edit_link": "1",
                            "pick_show_view_link": "1",
                            "pick_limit": "0",
                            "pick_user_role": "Administrator",
                            "pick_post_status": [
                                "publish"
                            ],
                            "maps": "0",
                            "maps_autocorrect": "0",
                            "maps_display": "replace",
                            "maps_style": "static",
                            "maps_type": "roadmap",
                            "maps_zoom": "12",
                            "maps_scrollwheel": "1",
                            "maps_info_window": "0",
                            "maps_info_window_content": "paragraph",
                            "maps_info_window_template": "69",
                            "admin_only": "0",
                            "restrict_role": "0",
                            "restrict_capability": "0",
                            "hidden": "0",
                            "read_only": "0",
                            "roles_allowed": [
                                "administrator"
                            ],
                            "rest_read": "0",
                            "rest_write": "0",
                            "rest_pick_response": "array",
                            "rest_pick_depth": "2",
                            "unique": "0",
                            "post_status": "publish",
                            "sister_id": "-- Select One --",
                            "pick_table": "-- Select One --"
                        },
                        {
                            "name": "hide_extra",
                            "id": 1352,
                            "label": "What to Bring and Cancellation",
                            "description": "",
                            "weight": 6,
                            "type": "pick",
                            "pick_object": "custom-simple",
                            "sister_id": "-- Select One --",
                            "post_status": "publish",
                            "pick_table": "-- Select One --",
                            "required": "0",
                            "pick_format_type": "single",
                            "pick_format_single": "dropdown",
                            "pick_format_multi": "checkbox",
                            "pick_display_format_multi": "default",
                            "pick_display_format_separator": ", ",
                            "pick_allow_add_new": "1",
                            "pick_taggable": "0",
                            "pick_show_icon": "1",
                            "pick_show_edit_link": "1",
                            "pick_show_view_link": "1",
                            "pick_limit": "0",
                            "pick_user_role": "Administrator",
                            "maps": "0",
                            "maps_autocorrect": "0",
                            "maps_display": "replace",
                            "maps_style": "static",
                            "maps_type": "roadmap",
                            "maps_zoom": "12",
                            "maps_scrollwheel": "1",
                            "maps_info_window": "0",
                            "maps_info_window_content": "paragraph",
                            "maps_info_window_template": "true",
                            "roles_allowed": "administrator",
                            "rest_pick_response": "array",
                            "rest_pick_depth": "1",
                            "pick_custom": "Hide",
                            "default_value": "Show"
                        },
                        {
                            "name": "button_message",
                            "id": 975,
                            "label": "Button Message",
                            "description": "Text that appears above the button",
                            "weight": 7,
                            "type": "pick",
                            "required": "0",
                            "pick_format_type": "single",
                            "pick_format_single": "list",
                            "pick_format_multi": "checkbox",
                            "pick_display_format_multi": "default",
                            "pick_display_format_separator": ", ",
                            "pick_allow_add_new": "1",
                            "pick_taggable": "0",
                            "pick_show_icon": "1",
                            "pick_show_edit_link": "1",
                            "pick_show_view_link": "1",
                            "pick_limit": "0",
                            "pick_user_role": "Administrator",
                            "pick_post_status": [
                                "publish"
                            ],
                            "maps": "0",
                            "maps_autocorrect": "0",
                            "maps_display": "replace",
                            "maps_style": "static",
                            "maps_type": "roadmap",
                            "maps_zoom": "12",
                            "maps_scrollwheel": "1",
                            "maps_info_window": "0",
                            "maps_info_window_content": "paragraph",
                            "maps_info_window_template": "526",
                            "admin_only": "0",
                            "restrict_role": "0",
                            "restrict_capability": "0",
                            "hidden": "0",
                            "read_only": "0",
                            "roles_allowed": [
                                "administrator"
                            ],
                            "rest_read": "0",
                            "rest_write": "0",
                            "rest_pick_response": "array",
                            "rest_pick_depth": "1",
                            "pick_object": "post_type",
                            "pick_val": "message",
                            "unique": "0",
                            "post_status": "publish",
                            "sister_id": "-- Select One --",
                            "pick_table": "-- Select One --"
                        },
                        {
                            "name": "button_text",
                            "id": 974,
                            "label": "Button Text",
                            "description": "If left blank button will read \"Book Now\"",
                            "weight": 8,
                            "type": "text",
                            "required": "0",
                            "text_allow_shortcode": "0",
                            "text_allow_html": "0",
                            "text_allowed_html_tags": "strong em a ul ol li b i",
                            "text_max_length": "255",
                            "maps": "0",
                            "maps_autocorrect": "0",
                            "maps_display": "replace",
                            "maps_style": "static",
                            "maps_type": "roadmap",
                            "maps_zoom": "12",
                            "maps_scrollwheel": "1",
                            "maps_info_window": "0",
                            "maps_info_window_content": "paragraph",
                            "maps_info_window_template": "526",
                            "admin_only": "0",
                            "restrict_role": "0",
                            "restrict_capability": "0",
                            "hidden": "0",
                            "read_only": "0",
                            "roles_allowed": [
                                "administrator"
                            ],
                            "rest_read": "0",
                            "rest_write": "0",
                            "rest_pick_response": "array",
                            "rest_pick_depth": "1",
                            "unique": "0",
                            "text_repeatable": "0",
                            "post_status": "publish",
                            "sister_id": "-- Select One --"
                        },
                        {
                            "name": "book",
                            "id": 422,
                            "label": "Book Now\/Button Link",
                            "description": "If blank, the calendar widget will be used.",
                            "weight": 9,
                            "type": "text",
                            "required": "0",
                            "text_allow_shortcode": "0",
                            "text_allow_html": "0",
                            "text_allowed_html_tags": "strong em a ul ol li b i",
                            "text_max_length": "255",
                            "maps": "0",
                            "maps_autocorrect": "0",
                            "maps_display": "replace",
                            "maps_style": "static",
                            "maps_type": "roadmap",
                            "maps_zoom": "12",
                            "maps_scrollwheel": "1",
                            "maps_info_window": "0",
                            "maps_info_window_content": "paragraph",
                            "maps_info_window_template": "69",
                            "admin_only": "0",
                            "restrict_role": "0",
                            "restrict_capability": "0",
                            "hidden": "0",
                            "read_only": "0",
                            "roles_allowed": [
                                "administrator"
                            ],
                            "rest_read": "0",
                            "rest_write": "0",
                            "rest_pick_response": "array",
                            "rest_pick_depth": "2",
                            "unique": "0",
                            "text_repeatable": "0",
                            "post_status": "publish",
                            "sister_id": "-- Select One --"
                        },
                        {
                            "name": "areas",
                            "id": 790,
                            "label": "Areas",
                            "description": "",
                            "weight": 10,
                            "type": "pick",
                            "pick_object": "post_type",
                            "pick_val": "area",
                            "required": "0",
                            "pick_format_type": "multi",
                            "pick_format_single": "dropdown",
                            "pick_format_multi": "list",
                            "pick_display_format_multi": "default",
                            "pick_display_format_separator": ", ",
                            "pick_allow_add_new": "1",
                            "pick_taggable": "0",
                            "pick_show_icon": "1",
                            "pick_show_edit_link": "1",
                            "pick_show_view_link": "1",
                            "pick_limit": "0",
                            "pick_post_status": [
                                "publish"
                            ],
                            "maps": "0",
                            "maps_autocorrect": "0",
                            "maps_display": "replace",
                            "maps_style": "static",
                            "maps_type": "roadmap",
                            "maps_zoom": "12",
                            "maps_scrollwheel": "1",
                            "maps_info_window": "0",
                            "maps_info_window_content": "paragraph",
                            "maps_info_window_template": "526",
                            "admin_only": "0",
                            "restrict_role": "0",
                            "restrict_capability": "0",
                            "hidden": "0",
                            "read_only": "0",
                            "roles_allowed": [
                                "administrator"
                            ],
                            "rest_read": "0",
                            "rest_write": "0",
                            "rest_pick_response": "array",
                            "rest_pick_depth": "1",
                            "unique": "0"
                        },
                        {
                            "name": "end_of_season",
                            "id": 1076,
                            "label": "End of Season",
                            "description": "This is the date after which dated events will no longer show in grey but \"Sorry we missed you. We're busy planning for more great paddling adventures.\" will still be shown",
                            "weight": 11,
                            "type": "date",
                            "sister_id": "-- Select One --",
                            "post_status": "publish",
                            "required": "0",
                            "date_type": "format",
                            "date_format": "mdy",
                            "date_allow_empty": "1",
                            "date_html5": "0",
                            "maps": "0",
                            "maps_autocorrect": "0",
                            "maps_display": "replace",
                            "maps_style": "static",
                            "maps_type": "roadmap",
                            "maps_zoom": "12",
                            "maps_scrollwheel": "1",
                            "maps_info_window": "0",
                            "maps_info_window_content": "paragraph",
                            "maps_info_window_template": "true",
                            "roles_allowed": "administrator",
                            "rest_pick_response": "array",
                            "rest_pick_depth": "1",
                            "required_help_boolean": "0",
                            "repeatable": "0",
                            "repeatable_format": "default",
                            "enable_conditional_logic": "0"
                        },
                        {
                            "name": "summary",
                            "id": 1760,
                            "label": "Summary",
                            "description": "",
                            "weight": 12,
                            "type": "wysiwyg",
                            "sister_id": "-- Select One --",
                            "required": "0",
                            "required_help_boolean": "0",
                            "wysiwyg_editor": "tinymce",
                            "maps": "0",
                            "maps_autocorrect": "0",
                            "maps_display": "replace",
                            "maps_style": "static",
                            "maps_type": "roadmap",
                            "maps_zoom": "12",
                            "maps_scrollwheel": "1",
                            "maps_info_window": "0",
                            "maps_info_window_content": "paragraph",
                            "maps_info_window_template": "true",
                            "repeatable": "0",
                            "repeatable_format": "default",
                            "roles_allowed": "administrator",
                            "rest_pick_response": "array",
                            "rest_pick_depth": "1",
                            "wysiwyg_media_buttons": "1",
                            "wysiwyg_trim": "1"
                        }
                    ]
                }
            ]
        },
        {
            "name": "date",
            "id": 28,
            "label": "Trip\/Course Details",
            "description": "",
            "label_singular": "Trip\/Course Details",
            "public": "1",
            "show_ui": "1",
            "supports_title": "0",
            "supports_editor": "0",
            "type": "post_type",
            "storage": "meta",
            "publicly_queryable": "1",
            "exclude_from_search": "0",
            "capability_type": "post",
            "capability_type_custom": "event_date",
            "capability_type_extra": "1",
            "has_archive": "0",
            "hierarchical": "0",
            "rewrite": "1",
            "rewrite_with_front": "1",
            "rewrite_feeds": "0",
            "rewrite_pages": "1",
            "query_var": "1",
            "can_export": "1",
            "default_status": "draft",
            "supports_author": "0",
            "supports_thumbnail": "0",
            "supports_excerpt": "0",
            "supports_trackbacks": "0",
            "supports_custom_fields": "0",
            "supports_comments": "0",
            "supports_revisions": "0",
            "supports_page_attributes": "0",
            "supports_post_formats": "0",
            "built_in_taxonomies_category": "0",
            "built_in_taxonomies_link_category": "0",
            "built_in_taxonomies_post_tag": "0",
            "show_in_menu": "1",
            "menu_position": "0",
            "show_in_nav_menus": "1",
            "show_in_admin_bar": "1",
            "pfat_enable": "0",
            "pfat_append_single": "append",
            "pfat_filter_single": "the_content",
            "pfat_append_archive": "append",
            "pfat_filter_archive": "the_excerpt",
            "pfat_run_outside_loop": "0",
            "rest_enable": "1",
            "read_all": "0",
            "write_all": "0",
            "built_in_taxonomies_cryout-featured-blob-category": "0",
            "built_in_taxonomies_wp_theme": "0",
            "_migrated_28": "1",
            "rest_api_field_mode": "value",
            "required_help_boolean": "0",
            "groups": [
                {
                    "name": "more_fields",
                    "id": 1080,
                    "label": "More Fields",
                    "description": "",
                    "weight": 0,
                    "fields": [
                        {
                            "name": "event_date",
                            "id": 29,
                            "label": "Event Date",
                            "description": "",
                            "weight": 0,
                            "type": "date",
                            "required": "0",
                            "date_type": "format",
                            "date_format": "fjy",
                            "date_allow_empty": "1",
                            "date_html5": "0",
                            "admin_only": "0",
                            "restrict_role": "0",
                            "restrict_capability": "0",
                            "hidden": "0",
                            "read_only": "0",
                            "roles_allowed": [
                                "administrator"
                            ],
                            "rest_read": "0",
                            "rest_write": "0",
                            "rest_pick_response": "array",
                            "rest_pick_depth": "2",
                            "unique": "0",
                            "date_repeatable": "0",
                            "maps": "0",
                            "maps_autocorrect": "0",
                            "maps_display": "replace",
                            "maps_style": "static",
                            "maps_type": "roadmap",
                            "maps_zoom": "12",
                            "maps_scrollwheel": "1",
                            "maps_info_window": "0",
                            "maps_info_window_content": "paragraph",
                            "maps_info_window_template": "526",
                            "post_status": "publish",
                            "sister_id": "-- Select One --",
                            "required_help_boolean": "0",
                            "repeatable": "0",
                            "repeatable_format": "default"
                        },
                        {
                            "name": "related_trip",
                            "id": 30,
                            "label": "Related Trip",
                            "description": "",
                            "weight": 1,
                            "type": "pick",
                            "pick_object": "post_type",
                            "pick_val": "post",
                            "required": "0",
                            "pick_format_type": "single",
                            "pick_format_single": "dropdown",
                            "pick_format_multi": "checkbox",
                            "pick_display_format_multi": "default",
                            "pick_display_format_separator": ", ",
                            "pick_allow_add_new": "1",
                            "pick_taggable": "0",
                            "pick_show_icon": "1",
                            "pick_show_edit_link": "1",
                            "pick_show_view_link": "1",
                            "pick_limit": "0",
                            "pick_user_role": "Administrator",
                            "pick_post_status": [
                                "publish"
                            ],
                            "admin_only": "0",
                            "restrict_role": "0",
                            "restrict_capability": "0",
                            "hidden": "0",
                            "read_only": "0",
                            "roles_allowed": [
                                "administrator"
                            ],
                            "rest_read": "0",
                            "rest_write": "0",
                            "rest_pick_response": "array",
                            "rest_pick_depth": "2",
                            "unique": "0",
                            "maps": "0",
                            "maps_autocorrect": "0",
                            "maps_display": "replace",
                            "maps_style": "static",
                            "maps_type": "roadmap",
                            "maps_zoom": "12",
                            "maps_scrollwheel": "1",
                            "maps_info_window": "0",
                            "maps_info_window_content": "paragraph",
                            "maps_info_window_template": "69",
                            "sister_id": "220",
                            "post_status": "publish",
                            "pick_table": "-- Select One --"
                        },
                        {
                            "name": "duration",
                            "id": 150,
                            "label": "Duration Label",
                            "description": "",
                            "weight": 2,
                            "type": "pick",
                            "required": "0",
                            "pick_format_type": "single",
                            "pick_format_single": "dropdown",
                            "pick_format_multi": "checkbox",
                            "pick_display_format_multi": "default",
                            "pick_display_format_separator": ", ",
                            "pick_allow_add_new": "1",
                            "pick_taggable": "0",
                            "pick_show_icon": "1",
                            "pick_show_edit_link": "1",
                            "pick_show_view_link": "1",
                            "pick_limit": "0",
                            "pick_user_role": "Administrator",
                            "pick_post_status": [
                                "publish"
                            ],
                            "maps": "0",
                            "maps_autocorrect": "0",
                            "maps_display": "replace",
                            "maps_style": "static",
                            "maps_type": "roadmap",
                            "maps_zoom": "12",
                            "maps_scrollwheel": "1",
                            "maps_info_window": "0",
                            "maps_info_window_content": "paragraph",
                            "admin_only": "0",
                            "restrict_role": "0",
                            "restrict_capability": "0",
                            "hidden": "0",
                            "read_only": "0",
                            "roles_allowed": [
                                "administrator"
                            ],
                            "rest_read": "0",
                            "rest_write": "0",
                            "rest_pick_response": "array",
                            "rest_pick_depth": "2",
                            "pick_object": "custom-simple",
                            "unique": "0",
                            "pick_custom": "6-days | 6-days, 5-nights\n5-days | 5-days, 4-nights\n4-days, 3-nights\n3-days | 3-days, 2-nights\n2 days\n1 day\n2 Consecutive Saturdays\n2 Consecutive Sundays\n5 evenings\n4 evenings\n4 Saturday mornings\n4 Wednesday evenings\n2 evenings\n1 evening\n",
                            "maps_info_window_template": "526",
                            "post_status": "publish",
                            "sister_id": "-- Select One --",
                            "pick_table": "-- Select One --",
                            "pick_post_author": "0",
                            "repeatable": "0",
                            "repeatable_format": "default"
                        },
                        {
                            "name": "location",
                            "id": 189,
                            "label": "Location",
                            "description": "",
                            "weight": 3,
                            "type": "pick",
                            "pick_object": "post_type",
                            "pick_val": "location",
                            "required": "0",
                            "pick_format_type": "single",
                            "pick_format_single": "dropdown",
                            "pick_format_multi": "checkbox",
                            "pick_display_format_multi": "default",
                            "pick_display_format_separator": ", ",
                            "pick_allow_add_new": "1",
                            "pick_taggable": "0",
                            "pick_show_icon": "1",
                            "pick_show_edit_link": "1",
                            "pick_show_view_link": "1",
                            "pick_limit": "0",
                            "pick_user_role": "Administrator",
                            "pick_post_status": [
                                "publish"
                            ],
                            "maps": "0",
                            "maps_autocorrect": "0",
                            "maps_display": "replace",
                            "maps_style": "static",
                            "maps_type": "roadmap",
                            "maps_zoom": "12",
                            "maps_scrollwheel": "1",
                            "maps_info_window": "0",
                            "maps_info_window_content": "paragraph",
                            "maps_info_window_template": "69",
                            "admin_only": "0",
                            "restrict_role": "0",
                            "restrict_capability": "0",
                            "hidden": "0",
                            "read_only": "0",
                            "roles_allowed": [
                                "administrator"
                            ],
                            "rest_read": "0",
                            "rest_write": "0",
                            "rest_pick_response": "array",
                            "rest_pick_depth": "2",
                            "unique": "0",
                            "sister_id": "-- Select One --",
                            "pick_table": "-- Select One --",
                            "required_help_boolean": "0",
                            "pick_format_single_help": "0",
                            "pick_format_multi_help": "0",
                            "pick_post_author": "0",
                            "repeatable": "0",
                            "repeatable_format": "default"
                        },
                        {
                            "name": "text_location",
                            "id": 1095,
                            "label": "Text Location",
                            "description": "Repeat the location for post naming purposes.",
                            "weight": 4,
                            "type": "text",
                            "sister_id": "-- Select One --",
                            "post_status": "publish",
                            "required": "0",
                            "text_allowed_html_tags": "strong em a ul ol li b i",
                            "text_max_length": "255",
                            "maps": "0",
                            "maps_autocorrect": "0",
                            "maps_display": "replace",
                            "maps_style": "static",
                            "maps_type": "roadmap",
                            "maps_zoom": "12",
                            "maps_scrollwheel": "1",
                            "maps_info_window": "0",
                            "maps_info_window_content": "paragraph",
                            "maps_info_window_template": "true",
                            "roles_allowed": "administrator",
                            "rest_pick_response": "array",
                            "rest_pick_depth": "1",
                            "required_help_boolean": "0",
                            "repeatable": "0",
                            "repeatable_format": "default"
                        },
                        {
                            "name": "end_date",
                            "id": 543,
                            "label": "End Date",
                            "description": "",
                            "weight": 5,
                            "type": "date",
                            "required": "0",
                            "date_type": "format",
                            "date_format": "fjy",
                            "date_allow_empty": "1",
                            "date_html5": "0",
                            "maps": "0",
                            "maps_autocorrect": "0",
                            "maps_display": "replace",
                            "maps_style": "static",
                            "maps_type": "roadmap",
                            "maps_zoom": "12",
                            "maps_scrollwheel": "1",
                            "maps_info_window": "0",
                            "maps_info_window_content": "paragraph",
                            "maps_info_window_template": "526",
                            "admin_only": "0",
                            "restrict_role": "0",
                            "restrict_capability": "0",
                            "hidden": "0",
                            "read_only": "0",
                            "roles_allowed": [
                                "administrator"
                            ],
                            "rest_read": "0",
                            "rest_write": "0",
                            "rest_pick_response": "array",
                            "rest_pick_depth": "2",
                            "unique": "0",
                            "date_repeatable": "0",
                            "post_status": "publish",
                            "sister_id": "-- Select One --"
                        },
                        {
                            "name": "area",
                            "id": 629,
                            "label": "Area",
                            "description": "",
                            "weight": 6,
                            "type": "pick",
                            "pick_object": "post_type",
                            "pick_custom": "Ottawa Area\nDurham Region\nChatham Area\nUnspecified",
                            "required": "0",
                            "pick_format_type": "multi",
                            "pick_format_single": "dropdown",
                            "pick_format_multi": "checkbox",
                            "pick_display_format_multi": "default",
                            "pick_display_format_separator": ", ",
                            "pick_allow_add_new": "1",
                            "pick_taggable": "0",
                            "pick_show_icon": "1",
                            "pick_show_edit_link": "1",
                            "pick_show_view_link": "1",
                            "pick_limit": "0",
                            "pick_user_role": "Administrator",
                            "pick_post_status": [
                                "publish"
                            ],
                            "maps": "0",
                            "maps_autocorrect": "0",
                            "maps_display": "replace",
                            "maps_style": "static",
                            "maps_type": "roadmap",
                            "maps_zoom": "12",
                            "maps_scrollwheel": "1",
                            "maps_info_window": "0",
                            "maps_info_window_content": "paragraph",
                            "maps_info_window_template": "526",
                            "admin_only": "0",
                            "restrict_role": "0",
                            "restrict_capability": "0",
                            "hidden": "0",
                            "read_only": "0",
                            "roles_allowed": [
                                "administrator"
                            ],
                            "rest_read": "0",
                            "rest_write": "0",
                            "rest_pick_response": "array",
                            "rest_pick_depth": "1",
                            "unique": "0",
                            "pick_val": "area",
                            "sister_id": "-- Select One --",
                            "pick_table": "-- Select One --",
                            "required_help_boolean": "0",
                            "pick_format_single_help": "0",
                            "pick_format_multi_help": "0",
                            "pick_post_author": "0",
                            "repeatable": "0",
                            "repeatable_format": "default"
                        },
                        {
                            "name": "note",
                            "id": 1030,
                            "label": "Note",
                            "description": "use this for coupons, etc",
                            "weight": 7,
                            "type": "text",
                            "required": "0",
                            "text_allow_shortcode": "0",
                            "text_allow_html": "0",
                            "text_allowed_html_tags": "strong em a ul ol li b i",
                            "text_max_length": "255",
                            "maps": "0",
                            "maps_autocorrect": "0",
                            "maps_display": "replace",
                            "maps_style": "static",
                            "maps_type": "roadmap",
                            "maps_zoom": "12",
                            "maps_scrollwheel": "1",
                            "maps_info_window": "0",
                            "maps_info_window_content": "paragraph",
                            "maps_info_window_template": "526",
                            "admin_only": "0",
                            "restrict_role": "0",
                            "restrict_capability": "0",
                            "hidden": "0",
                            "read_only": "0",
                            "roles_allowed": [
                                "administrator"
                            ],
                            "rest_read": "0",
                            "rest_write": "0",
                            "rest_pick_response": "array",
                            "rest_pick_depth": "1"
                        }
                    ]
                }
            ]
        }
    ]
}
petersjoo commented 11 months ago

Still broken in 3.0.9

olivierguerriat commented 11 months ago

See https://github.com/pods-framework/pods/issues/5532#issuecomment-1770364130

sc0ttkclark commented 11 months ago

Fixed via https://github.com/pods-framework/pods/commit/848954021a0fb07efc186f98a8a0039bc23db228