[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$fliOaRso0I29SgpSCYlhK-12ZW4r0z0DtPHREsxT9h8E":3},{"slug":4,"name":5,"version":6,"author":7,"author_profile":8,"description":9,"short_description":10,"active_installs":11,"downloaded":12,"rating":13,"num_ratings":14,"last_updated":15,"tested_up_to":16,"requires_at_least":17,"requires_php":18,"tags":19,"homepage":23,"download_link":24,"security_score":13,"vuln_count":25,"unpatched_count":25,"last_vuln_date":26,"fetched_at":27,"vulnerabilities":28,"developer":29,"crawl_stats":26,"alternatives":37,"analysis":147,"fingerprints":354},"pods-gravity-forms","Pods Gravity Forms Add-On","1.6.0","Jory Hogeveen","https:\u002F\u002Fprofiles.wordpress.org\u002Fkeraweb\u002F","\u003Cul>\n\u003Cli>\u003Cstrong>Requires:\u003C\u002Fstrong> \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fpods\u002F\" rel=\"ugc\">Pods\u003C\u002Fa> 3.0+, \u003Ca href=\"https:\u002F\u002Fpods.io\u002Fgravityforms\u002F\" rel=\"nofollow ugc\">Gravity Forms\u003C\u002Fa> 1.9+\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Demo:\u003C\u002Fstrong> Want to try Pods GF out? Check out the \u003Ca href=\"https:\u002F\u002Fwww.gravityforms.com\u002Fgravity-forms-demo\u002F\" rel=\"nofollow ugc\">Gravity Forms Live Demo\u003C\u002Fa> and install the Pods and Pods Gravity Forms plugins once you’re there\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Bugs\u002FIdeas:\u003C\u002Fstrong> Please report bugs or request features on \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fpods-framework\u002Fpods-gravity-forms\u002F\" rel=\"nofollow ugc\">GitHub\u003C\u002Fa>\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>Special thanks to Rocketgenius for their sponsorship support and to Naomi C. Bush for her help in the initial add-on UI work.\u003C\u002Fp>\n\u003Ch4>WP-CLI Command for Syncing Entries\u003C\u002Fh4>\n\u003Cp>This add-on provides the ability to sync entries from a Form Submission and Entry Edit screen. To bulk sync all entries even prior to setting up a Pods Gravity Form Feed, you can run a WP-CLI command.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Example 1: Sync all entries for Form 123 first active Pod feed\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cpre>\u003Ccode>wp pods-gf sync --form=123\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>\u003Cstrong>Example 2: Sync all entries for Form 123 using a specific feed (even if it is inactive)\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cpre>\u003Ccode>wp pods-gf sync --form=123 --feed=2\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Ch4>Mapping GF List Fields to a Pods Relationship field\u003C\u002Fh4>\n\u003Cp>You can map a GF List field to a Relationship field related to another Pod. Using the below examples you can customize how the automatic mapping works. By default, the list columns will map to the pod fields with the same labels.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Example 1: Customize what columns map to which Related Pod fields for Form ID 1, Field ID 2\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>Customizing a list field row can be done by using the \u003Ccode>pods_gf_field_columns_mapping\u003C\u002Fcode> filter, which has Form ID and Field ID variations (\u003Ccode>pods_gf_field_columns_mapping_{form_id}\u003C\u002Fcode> and \u003Ccode>pods_gf_field_columns_mapping_{form_id}_{field_id}\u003C\u002Fcode>).\u003C\u002Fp>\n\u003Cpre>\u003Ccode>add_filter( 'pods_gf_field_columns_mapping_1_2', 'my_columns_mapping', 10, 4 );\n\n\u002F**\n * Filter list columns mapping for related pod fields.\n *\n * @param array    $columns  List field columns.\n * @param array    $form     GF form.\n * @param GF_Field $gf_field GF field data.\n * @param Pods     $pod      Pods object.\n *\n * @return array\n *\u002F\nfunction my_columns_mapping( $columns, $form, $gf_field, $related_obj ) {\n\n    $columns[0] = 'first_field';\n    $columns[1] = 'second_field';\n    $columns[2] = 'third_field';\n\n    return $columns;\n\n}\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>\u003Cstrong>Example 2: Customize a List row for Form ID 1, Field ID 2\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>Customizing a list field row can be done by using the \u003Ccode>pods_gf_field_column_row\u003C\u002Fcode> filter, which has Form ID and Field ID variations (\u003Ccode>pods_gf_field_column_row_{form_id}\u003C\u002Fcode> and \u003Ccode>pods_gf_field_column_row_{form_id}_{field_id}\u003C\u002Fcode>).\u003C\u002Fp>\n\u003Cpre>\u003Ccode>add_filter( 'pods_gf_field_column_row_1_2', 'my_column_row_override', 10, 6 );\n\n\u002F**\n * Filter list field row for relationship field saving purposes.\n *\n * @param array      $row         List field row.\n * @param array      $columns     List field columns.\n * @param array      $form        GF form.\n * @param GF_Field   $gf_field    GF field data.\n * @param array      $options     Pods GF options.\n * @param Pods|false $related_obj Related Pod object.\n *\n * @return array\n *\u002F\nfunction my_column_row_override( $row, $columns, $form, $gf_field, $options, $related_obj ) {\n\n    \u002F\u002F Update certain row fields based on the value of specific column.\n    if ( ! empty( $row['user_relationship_field'] ) ) {\n        $user = get_userdata( (int) $row['user'] );\n\n        \u002F\u002F Set the post_title to match the User display name.\n        if ( $user && ! is_wp_error( $user ) ) {\n            $row['post_title'] = $user->display_name;\n        }\n    }\n\n    return $row;\n\n}\n\u003C\u002Fcode>\u003C\u002Fpre>\n","Integrate with Gravity Forms to create a Pod item from a form submission.",1000,36029,100,7,"2026-02-24T23:23:00.000Z","7.0","6.3","7.2",[20,21,22],"form-mapping","gravity-forms","pods","https:\u002F\u002Fpods.io\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fpods-gravity-forms.1.6.0.zip",0,null,"2026-03-15T15:16:48.613Z",[],{"slug":30,"display_name":7,"profile_url":8,"plugin_count":31,"total_installs":32,"avg_security_score":33,"avg_patch_time_days":34,"trust_score":35,"computed_at":36},"keraweb",10,112220,93,24,89,"2026-04-04T21:24:21.736Z",[38,61,81,104,125],{"slug":39,"name":40,"version":41,"author":42,"author_profile":43,"description":44,"short_description":45,"active_installs":46,"downloaded":47,"rating":48,"num_ratings":49,"last_updated":50,"tested_up_to":51,"requires_at_least":52,"requires_php":53,"tags":54,"homepage":59,"download_link":60,"security_score":13,"vuln_count":25,"unpatched_count":25,"last_vuln_date":26,"fetched_at":27},"gravity-forms-zero-spam","Gravity Forms Zero Spam","1.7.2","GravityKit","https:\u002F\u002Fprofiles.wordpress.org\u002Fgravityview\u002F","\u003Cp>This Gravity Forms add-on blocks spam using a non-obtrusive anti-spam measure and can email a spam report summary.\u003C\u002Fp>\n\u003Ch3>Spam blocking for Gravity Forms\u003C\u002Fh3>\n\u003Cp>To get started, all you need to do is activate the plugin!\u003C\u002Fp>\n\u003Ch3>Is the Gravity Forms honeypot field not working for you? 🍯 🐝\u003C\u002Fh3>\n\u003Cp>Zero Spam is better than the Gravity Forms anti-spam honeypot field. If you’re getting spammed, try this plugin.\u003C\u002Fp>\n\u003Ch3>Use this plugin instead of reCaptcha\u003C\u002Fh3>\n\u003Cp>\u003Cstrong>reCaptcha is user-hostile!\u003C\u002Fstrong> Use this instead! Users don’t need to click stoplights, crosswalks, or bicycles when you use this plugin to stop spam.\u003C\u002Fp>\n\u003Ch3>Enable or disable filtering per form\u003C\u002Fh3>\n\u003Cp>If you only want the plugin for specific forms, that’s possible! The plugin adds a simple “Prevent spam using Gravity Forms Zero Spam” setting to each form (requires Gravity Forms 2.5 or newer).\u003C\u002Fp>\n\u003Ch3>Spam report emails\u003C\u002Fh3>\n\u003Cp>Spam summary report emails are disabled by default. Once enabled, a spam summary that includes the number of entries per-form will be sent via email.\u003C\u002Fp>\n\u003Cp>Choose whether you want to be notified after the number of entries reaches a threshold (e.g. 10 spam entries) or after a certain number of days (e.g. every week). If there are no spam entries, no report will be sent.\u003C\u002Fp>\n\u003Cp>Requires \u003Ca href=\"https:\u002F\u002Fwww.gravityforms.com\u002F?partner_id=1210629&irgwc=1&utm_medium=affiliate&utm_campaign=1210629&utm_source=Katz%20Web%20Services%2C%20Inc.\" rel=\"nofollow ugc\">Gravity Forms\u003C\u002Fa>.\u003C\u002Fp>\n\u003Cp>\u003Cem>Brought to you by \u003Ca href=\"https:\u002F\u002Fwww.gravitykit.com?utm_source=plugin&utm_campaign=zero-spam&utm_content=readme\" rel=\"nofollow ugc\">GravityKit\u003C\u002Fa>. We create essential Gravity Forms Add-Ons.\u003C\u002Fem>\u003C\u002Fp>\n","Enhance your Gravity Forms to include anti-spam measures originally based on the work of David Walsh's \"Zero Spam\" technique.",100000,1048908,86,23,"2026-03-12T14:21:00.000Z","6.9.4","4.7","7.4",[55,56,21,57,58],"anti-spam","captcha","honeypot","spam","https:\u002F\u002Fwww.gravitykit.com?utm_source=plugin&utm_campaign=zero-spam&utm_content=pluginuri","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fgravity-forms-zero-spam.1.7.2.zip",{"slug":22,"name":62,"version":63,"author":64,"author_profile":65,"description":66,"short_description":67,"active_installs":46,"downloaded":68,"rating":69,"num_ratings":70,"last_updated":71,"tested_up_to":16,"requires_at_least":17,"requires_php":18,"tags":72,"homepage":23,"download_link":77,"security_score":78,"vuln_count":79,"unpatched_count":25,"last_vuln_date":80,"fetched_at":27},"Pods – Custom Content Types and Fields","3.3.7","Scott Kingsley Clark","https:\u002F\u002Fprofiles.wordpress.org\u002Fsc0ttkclark\u002F","\u003Cp>Manage all your custom content needs in one location with the Pods Framework.\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Cstrong>Create content types\u003C\u002Fstrong> including Custom Post Types, Custom Taxonomies, and our special Advanced Content Types (ACTs get their own custom tables)\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Extend and customize content types\u003C\u002Fstrong> including Posts, Pages, Categories, Tags, Users, and Media with one easy click\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Create custom settings pages\u003C\u002Fstrong> easily within seconds\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Add custom fields\u003C\u002Fstrong> to \u003Cem>any\u003C\u002Fem> content type\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Conditionally show fields\u003C\u002Fstrong> based on the value of other fields with Conditional Logic\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Group your fields\u003C\u002Fstrong> however you’d like into their own sections and add additional headings to help organize\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Show your fields\u003C\u002Fstrong> anywhere using our \u003Ca href=\"https:\u002F\u002Fdocs.pods.io\u002Fdisplaying-pods\u002Fpods-blocks\u002F\" rel=\"nofollow ugc\">blocks\u003C\u002Fa>, \u003Ca href=\"https:\u002F\u002Fdocs.pods.io\u002Fdisplaying-pods\u002Fpods-shortcode\u002F\" rel=\"nofollow ugc\">shortcodes\u003C\u002Fa>, \u003Ca href=\"https:\u002F\u002Fdocs.pods.io\u002Fdisplaying-pods\u002Fpods-widgets\u002F\" rel=\"nofollow ugc\">widgets\u003C\u002Fa>, or the non-coder \u003Ca href=\"https:\u002F\u002Fdocs.pods.io\u002Fdisplaying-pods\u002Fpods-templates\u002F\" rel=\"nofollow ugc\">Pods Template\u003C\u002Fa> approach along with our \u003Ca href=\"https:\u002F\u002Fdocs.pods.io\u002Fdisplaying-pods\u002Fpods-templates\u002Fauto-templates\u002F\" rel=\"nofollow ugc\">automatic theme integration\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Create connections\u003C\u002Fstrong> between any of your content with \u003Ca href=\"https:\u002F\u002Fdocs.pods.io\u002Ffields\u002Frelationship\u002F\" rel=\"nofollow ugc\">relationship fields\u003C\u002Fa> to keep your content organized\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>Let Pods help you grow your development and site building skills so that you can manage content beyond the standard WordPress Posts & Pages.\u003C\u002Fp>\n\u003Cp>Want to check it out? Give Pods a test drive with our new \u003Ca href=\"https:\u002F\u002Fpods.io\u002Fdemo\u002F\" rel=\"nofollow ugc\">One-click Demo\u003C\u002Fa>.\u003C\u002Fp>\n\u003Cp>Check out our \u003Ca href=\"https:\u002F\u002Fdocs.pods.io\u002F\" rel=\"nofollow ugc\">Documentation\u003C\u002Fa>, \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fsupport\u002Fplugin\u002Fpods\u002F\" rel=\"ugc\">Support Forums\u003C\u002Fa>, and our \u003Ca href=\"https:\u002F\u002Fsupport.pods.io\u002Fchat\u002F\" rel=\"nofollow ugc\">Live Community Slack Chat\u003C\u002Fa> for assistance building your dream project with Pods.\u003C\u002Fp>\n\u003Ch4>Introduction\u003C\u002Fh4>\n\u003Cspan class=\"embed-youtube\" style=\"text-align:center; display: block;\">\u003Ciframe loading=\"lazy\" class=\"youtube-player\" width=\"750\" height=\"422\" src=\"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F0WqKZr2gPZY?version=3&rel=1&showsearch=0&showinfo=1&iv_load_policy=1&fs=1&hl=en-US&autohide=2&wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox\">\u003C\u002Fiframe>\u003C\u002Fspan>\n\u003Ch4>Content types that evolve with your needs\u003C\u002Fh4>\n\u003Cp>Create any type of content that you want — small or large — we’ve got you covered. Every content type created with Pods gets all the love it needs to grow up big and strong. You’ll get an easy-to-use interface that lets you manage field groups, custom fields, and how your content type will look or function.\u003C\u002Fp>\n\u003Ch4>Create new content types\u003C\u002Fh4>\n\u003Cp>With Pods, you can create entirely new content types and settings pages.\u003C\u002Fp>\n\u003Ch4>Every Field Type, FREE\u003C\u002Fh4>\n\u003Cp>If you choose to use Pods for your custom fields, you’ll get every field type you need, free of charge. Pods works great alongside \u003Ca href=\"https:\u002F\u002Fcomparewp.org\u002Fcck\" rel=\"nofollow ugc\">other custom field plugins\u003C\u002Fa> like \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fadvanced-custom-fields\u002F\" rel=\"ugc\">Advanced Custom Fields\u003C\u002Fa> too.\u003C\u002Fp>\n\u003Cp>We have an extensive collection of over \u003Ca href=\"https:\u002F\u002Fdocs.pods.io\u002Ffields\u002F\" rel=\"nofollow ugc\">25 different input types to choose from on 20+ different field types for any content structure\u003C\u002Fa>. Each field type comes with their own additional options to help you customize content entry and display.\u003C\u002Fp>\n\u003Cp>You can also control visibility by role\u002Fcapability and \u003Ca href=\"https:\u002F\u002Fdocs.pods.io\u002Ffields\u002Fsettings-advanced\u002F\" rel=\"nofollow ugc\">other advanced options\u003C\u002Fa>.\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Cstrong>Repeatable Fields:\u003C\u002Fstrong> Turn almost any field into a repeatable field with multiple values\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Text:\u003C\u002Fstrong> Plain Text, Website, Phone, Email, Password\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Paragraph:\u003C\u002Fstrong> Plain Paragraph Text, WYSIWYG (Visual Editor), Code (Syntax Highlighting)\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Date \u002F Time:\u003C\u002Fstrong> Date and Time, Date, Time\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Number:\u003C\u002Fstrong> Plain Number, Currency (30+ international currencies)\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Relationships \u002F Media:\u003C\u002Fstrong> File \u002F Image \u002F Video (Media library and basic upload options available), Avatar (for extended Users), oEmbed, Relationship (Dropdown, Multi Select, Autocomplete, Checkboxes, Radio Buttons, and List View available)\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Checkbox\u003C\u002Fstrong> (Yes \u002F No)\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Color Picker\u003C\u002Fstrong>\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Layout Fields:\u003C\u002Fstrong> Heading text, HTML content\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Relationships to rule the world with\u003C\u002Fh4>\n\u003Cp>The power is in your hands with our comprehensive support to \u003Cstrong>relate your content to anything\u003C\u002Fstrong>.\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Cstrong>Custom defined lists\u003C\u002Fstrong> of text options\u003C\u002Fli>\n\u003Cli>Relate to any \u003Cstrong>Post Type or Taxonomy\u003C\u002Fstrong> posts \u002F terms\u003C\u002Fli>\n\u003Cli>Relate to any \u003Cstrong>User\u003C\u002Fstrong> profile\u003C\u002Fli>\n\u003Cli>Relate to \u003Cstrong>User Roles or Capabilities\u003C\u002Fstrong>\u003C\u002Fli>\n\u003Cli>Relate to any \u003Cstrong>Comment\u003C\u002Fstrong>\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>And many other relationships are also available including:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Cstrong>Image Sizes\u003C\u002Fstrong>\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Navigation Menus\u003C\u002Fstrong>\u003C\u002Fli>\n\u003Cli>Relate to content within \u003Cstrong>any Database Table\u003C\u002Fstrong>\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Countries\u003C\u002Fstrong> (predefined)\u003C\u002Fli>\n\u003Cli>\u003Cstrong>US States\u003C\u002Fstrong> (predefined)\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Canadian Provinces\u003C\u002Fstrong> (predefined)\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Calendar – Days of Week\u003C\u002Fstrong> (predefined)\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Calendar – Months of Year\u003C\u002Fstrong> (predefined)\u003C\u002Fli>\n\u003Cli>And many more!\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Optional Components to do even more\u003C\u002Fh4>\n\u003Cp>You can enable some of our included components to extend your WordPress site even further:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Cstrong>Types-only Mode\u003C\u002Fstrong> – On our Pods Settings page, you can choose to disable creating custom fields for a performance boost if you only want to use Pods for content types or you plan on using it alongside of other custom field plugins\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Pods Templates\u003C\u002Fstrong> – Use our \u003Ca href=\"https:\u002F\u002Fdocs.pods.io\u002Fdisplaying-pods\u002Fpods-templates\u002F\" rel=\"nofollow ugc\">template engine\u003C\u002Fa> to create templates that can be handed off to clients for care-free management\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Markdown Syntax\u003C\u002Fstrong> – Parses \u003Ca href=\"https:\u002F\u002Fwww.markdownguide.org\u002Fbasic-syntax\" rel=\"nofollow ugc\">Markdown Syntax\u003C\u002Fa> for Paragraph Text \u002F WYSIWYG fields\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Advanced Relationships\u003C\u002Fstrong> – Add even more relationship objects including Database Tables, Multisite Networks, Multisite Sites, Themes, Page Templates (in the theme), Sidebars, Post Type Objects, and Taxonomy Objects\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Table Storage\u003C\u002Fstrong> – Enable table-based database storage for custom fields on Post Types, Media, Users, and Comments\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Roles and Capabilities\u003C\u002Fstrong> – Create or edit Roles for your site and customize what they have access to\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Advanced Content Types\u003C\u002Fstrong> – Create entirely custom content types that have their own database table, and they will exist outside the normal WordPress context avoiding meta database tables\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Pods Pages\u003C\u002Fstrong> – Create custom pages that function off of your site’s URL path with wildcard support and choose the Page Template in the theme to use — most useful paired with Advanced Content Types\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Plugins that integrate with Pods\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwplake.org\u002Fadvanced-views-lite\u002F?ref=5\" rel=\"nofollow ugc\">Advanced Views Lite\u003C\u002Fa> – Lets you build templates (views) and queries (cards) so that you can manage your content rendering with less code. (Disclaimer: We have an affiliate link to them to help support our project)\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fbricksbuilder.io\u002F\" rel=\"nofollow ugc\">Bricks Builder\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fcodepress-admin-columns\u002F\" rel=\"ugc\">Codepress Admin Columns\u003C\u002Fa> using premium \u003Ca href=\"https:\u002F\u002Fwww.admincolumns.com\u002Fpods\u002F\" rel=\"nofollow ugc\">Admin Columns Pro\u003C\u002Fa> Pods integration\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fconductorplugin.com\u002F\" rel=\"nofollow ugc\">Conductor\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Felementor.com\u002Fpro\u002F\" rel=\"nofollow ugc\">Elementor Pro\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fpolylang\u002F\" rel=\"ugc\">Polylang\u003C\u002Fa> has direct integration in Pods itself\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Ftimber-library\u002F\" rel=\"ugc\">Timber\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fwp-graphql\u002F\" rel=\"ugc\">WPGraphQL\u003C\u002Fa> has direct integration in Pods itself\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"http:\u002F\u002Fwpml.org\u002F\" rel=\"nofollow ugc\">WPML\u003C\u002Fa> has direct integration in Pods itself\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fyet-another-related-posts-plugin\u002F\" rel=\"ugc\">YARPP\u003C\u002Fa> has direct integration in Pods itself\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Themes that integrate with Pods\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwww.studiopress.com\u002Fthemes\u002Fgenesis\u002F\" rel=\"nofollow ugc\">Genesis\u003C\u002Fa> (StudioPress) has direct integration in Pods itself\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Extend Pods with Free Add-Ons\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fpods-beaver-builder-themer-add-on\u002F\" rel=\"ugc\">Pods Beaver Themer Add-On\u003C\u002Fa> – Integrates Pods with \u003Ca href=\"https:\u002F\u002Fwww.wpbeaverbuilder.com\u002Fbeaver-themer\u002F\" rel=\"nofollow ugc\">Beaver Themer\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fpods-gravity-forms\u002F\" rel=\"ugc\">Pods Gravity Forms Add-On\u003C\u002Fa> – Integrates Pods with \u003Ca href=\"https:\u002F\u002Fwww.gravityforms.com\u002F\" rel=\"nofollow ugc\">Gravity Forms\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fpods-alternative-cache\u002F\" rel=\"ugc\">Pods Alternative Cache Add-On\u003C\u002Fa> – Speed up Pods on servers with limited object caching capabilities\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fpods-seo\u002F\" rel=\"ugc\">Pods SEO Add-On\u003C\u002Fa> – Integrates Pods Advanced Content Types with Yoast SEO\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fpods-ajax-views\u002F\" rel=\"ugc\">Pods AJAX Views Add-On\u003C\u002Fa> – Adds new functions you can use to output template parts that load via AJAX after other page elements\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Extend Pods with Free Third-party Add-Ons\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fpmpro-pods\u002F\" rel=\"ugc\">Paid Memberships Pro – Pods Add On\u003C\u002Fa> – Integrates Pods with \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fpaid-memberships-pro\u002F\" rel=\"ugc\">Paid Memberships Pro\u003C\u002Fa> to extend PMPro objects with custom fields added by Pods\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fpanda-pods-repeater-field\u002F\" rel=\"ugc\">Panda Pods Repeater Field Add-On\u003C\u002Fa> – Lets you add groups of fields that repeat and are stored in their own custom database table (Advanced setup required)\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Pods Pro by SKCDEV Premium Add-Ons\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fpods-pro.skc.dev\u002Fdownloads\u002Flist-tables\u002F\" rel=\"nofollow ugc\">List Tables Add-On\u003C\u002Fa> – A new block and shortcode to list\u002Ffilter content from Pods in a table format\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fpods-pro.skc.dev\u002Fdownloads\u002Fpage-builder-toolkit\u002F\" rel=\"nofollow ugc\">Page Builder Toolkit Add-On\u003C\u002Fa> – Integrates Pods with \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fbeaver-builder-lite-version\u002F\" rel=\"ugc\">Beaver Builder\u003C\u002Fa>, \u003Ca href=\"https:\u002F\u002Fwww.wpbeaverbuilder.com\u002Fbeaver-themer\u002F\" rel=\"nofollow ugc\">Beaver Themer\u003C\u002Fa>, \u003Ca href=\"https:\u002F\u002Fconditionalblocks.com\u002F\" rel=\"nofollow ugc\">Conditional Blocks Pro\u003C\u002Fa>, \u003Ca href=\"https:\u002F\u002Fwww.elegantthemes.com\u002Fgallery\u002Fdivi\u002F\" rel=\"nofollow ugc\">Divi Theme\u003C\u002Fa>, \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Felementor\u002F\" rel=\"ugc\">Elementor\u003C\u002Fa>, \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fgenerateblocks\u002F\" rel=\"ugc\">GenerateBlocks\u003C\u002Fa>, \u003Ca href=\"https:\u002F\u002Foxygenbuilder.com\u002F\" rel=\"nofollow ugc\">Oxygen Builder\u003C\u002Fa>, and \u003Ca href=\"https:\u002F\u002Fwpstackable.com\u002Fpremium\u002F\" rel=\"nofollow ugc\">Stackable Blocks (premium)\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fpods-pro.skc.dev\u002Fdownloads\u002Fadvanced-relationship-storage\u002F\" rel=\"nofollow ugc\">Advanced Relationships Storage Add-On\u003C\u002Fa> – Advanced options for relationship storage\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fpods-pro.skc.dev\u002Fdownloads\u002Ftablepress-integration\u002F\" rel=\"nofollow ugc\">TablePress Integration Add-On\u003C\u002Fa> – Integrates Pods with \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Ftablepress\u002F\" rel=\"ugc\">TablePress\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fpods-pro.skc.dev\u002Fdownloads\u002Fadvanced-permalinks\u002F\" rel=\"nofollow ugc\">Advanced Permalinks Add-On\u003C\u002Fa> – Advanced permalink structures and taxonomy landing pages\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>How can I translate Pods into my own language?\u003C\u002Fh3>\n\u003Cp>Many thanks go out to the fine folks who have helped us translate the Pods plugin into many other languages.\u003C\u002Fp>\n\u003Cp>Join us in further translating the Pods interface on the official \u003Ca href=\"https:\u002F\u002Ftranslate.wordpress.org\u002Fprojects\u002Fwp-plugins\u002Fpods\" rel=\"nofollow ugc\">Translating WordPress dashboard\u003C\u002Fa>\u003C\u002Fp>\n\u003Cp>We are also available through our \u003Ca href=\"https:\u002F\u002Fsupport.pods.io\u002Fchat\u002F\" rel=\"nofollow ugc\">Live Community Slack Chat\u003C\u002Fa> to help our translators get started and to support them on the process.\u003C\u002Fp>\n\u003Cp>Are you looking to translate your Pods and Fields themselves? You’ll want to enable the “Translate Pods” component from Pods Admin > Components.\u003C\u002Fp>\n\u003Ch3>Contributors\u003C\u002Fh3>\n\u003Cp>Pods really wouldn’t be where it is without all the contributions from our \u003Ca href=\"https:\u002F\u002Ffriends.pods.io\" rel=\"nofollow ugc\">donors\u003C\u002Fa> and \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fpods-framework\u002Fpods\u002Fgraphs\u002Fcontributors\" rel=\"nofollow ugc\">code\u002Fsupport contributors\u003C\u002Fa>.\u003C\u002Fp>\n","Pods is a framework for creating, managing, and deploying customized content types and fields for any project.",5095152,96,416,"2026-02-25T14:19:00.000Z",[73,74,75,76,22],"content-types","custom-fields","custom-post-types","custom-taxonomies","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fpods.3.3.7.zip",87,14,"2025-03-02 00:00:00",{"slug":82,"name":83,"version":84,"author":85,"author_profile":86,"description":87,"short_description":88,"active_installs":89,"downloaded":90,"rating":91,"num_ratings":92,"last_updated":93,"tested_up_to":94,"requires_at_least":95,"requires_php":96,"tags":97,"homepage":102,"download_link":103,"security_score":13,"vuln_count":25,"unpatched_count":25,"last_vuln_date":26,"fetched_at":27},"styles-and-layouts-for-gravity-forms","Gravity Booster – Styles & Layouts for Gravity Forms","5.26","wpmonks","https:\u002F\u002Fprofiles.wordpress.org\u002Fwpmonks\u002F","\u003Cp>\u003Cstrong>Introducing Gravity Booster formerly Styles and Layouts for Gravity Forms. It is your all in one solution for styling, customizing and protecting your forms. It  you lets you create beautiful designs as well as protect against spam submissions for Gravity forms.\u003C\u002Fstrong> It provides you and easy to use interface for designing forms that works with all themes and builders. It is compatible with Divi, Elmentor, Visual composer, Thrive Architect Beaver Builder, Astra, GeneratePress, Oxygen Builder, Avada theme, OceanWP theme, Genesis Framework, The7, Salient and more. The design changes you make with this Gravity Forms Styler plugin are instantaneously visible so, you can see how the form looks in real time.\u003C\u002Fp>\n\u003Cp>With Gravity Booster you can not only design forms but use advance spam submssion filtering like keyword blacklisting, email blacklisting, restricting forms to specific user roles. All of this without writing a single line of code.\u003C\u002Fp>\n\u003Cspan class=\"embed-youtube\" style=\"text-align:center; display: block;\">\u003Ciframe loading=\"lazy\" class=\"youtube-player\" width=\"750\" height=\"422\" src=\"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FIb5qRdMr_v4?version=3&rel=1&showsearch=0&showinfo=1&iv_load_policy=1&fs=1&hl=en-US&autohide=2&wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox\">\u003C\u002Fiframe>\u003C\u002Fspan>\n\u003Ch4>Styles & Layouts for Gravity Forms Premium Addons:\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwpmonks.com\u002Fdownloads\u002Fai-for-gravity-forms\u002F\" rel=\"nofollow ugc\"> \u003Cstrong>AI for Gravity Forms\u003C\u002Fstrong> \u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwpmonks.com\u002Fdownloads\u002Fmaterial-design\u002F\" rel=\"nofollow ugc\"> \u003Cstrong>Material Design\u003C\u002Fstrong> \u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwpmonks.com\u002Fdownloads\u002Fcheckbox-radio-styler-for-gravity-forms\u002F\" rel=\"nofollow ugc\"> \u003Cstrong>Checkbox & Radio Styler\u003C\u002Fstrong> \u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwpmonks.com\u002Fdownloads\u002Fgravity-forms-bootstrap-addon\u002F\" rel=\"nofollow ugc\"> \u003Cstrong>Bootstrap Design\u003C\u002Fstrong> \u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwpmonks.com\u002Fdownloads\u002Ftheme-pack\u002F\" rel=\"nofollow ugc\"> \u003Cstrong>Theme Pack\u003C\u002Fstrong> \u003C\u002Fa> \u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwpmonks.com\u002Fdownloads\u002Ftooltips\u002F\" rel=\"nofollow ugc\"> \u003Cstrong>Tooltips\u003C\u002Fstrong> \u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwpmonks.com\u002Fdownloads\u002Ffield-icons\u002F\" rel=\"nofollow ugc\"> \u003Cstrong>Field Icons\u003C\u002Fstrong> \u003C\u002Fa> \u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwpmonks.com\u002Fdownloads\u002Fcustom-themes\u002F\" rel=\"nofollow ugc\"> \u003Cstrong>Custom Themes\u003C\u002Fstrong> \u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwpmonks.com\u002Fdownloads\u002Faddon-bundle\u002F\" rel=\"nofollow ugc\"> \u003Cstrong>Addon Bundle\u003C\u002Fstrong>\u003C\u002Fa>\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Powerful Anti-Spam Features (New!)\u003C\u002Fh4>\n\u003Cp>Gravity Booster now includes built-in spam protection tools to keep your forms clean and secure:\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Keyword Blocking\u003C\u002Fstrong>\u003Cbr \u002F>\nBlock spam messages by setting specific keywords (e.g., “SEO service”, “backlink”, etc.). Any form submission containing these will be automatically blocked.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Email Filtering\u003C\u002Fstrong>\u003Cbr \u002F>\nDeny or allow submissions based on full email addresses or specific email domains. Easily block fake or disposable emails like mailinator.com, etc.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Role-Based Access Control\u003C\u002Fstrong>\u003Cbr \u002F>\nRestrict form visibility to specific WordPress user roles. You can limit form access to certain roles, ensuring the right users see the right forms.\u003C\u002Fp>\n\u003Cp>This functionality helps drastically reduce unwanted form submissions, particularly those caused by bots or spammy marketers.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>This Gravity Forms styler comes with 150+ options\u003C\u002Fstrong> to customize various parts of form like form wrapper, form header, form title and description, submit button, radio inputs, checkbox inputs, paragraph textarea, labels, section breaks, descriptions, text inputs , dropdown menus, labels, sub labels, placeholders, list fields, confirmation message, error messages and more.\u003C\u002Fp>\n\u003Cp>You can set CSS options like background color, font size, font family, borders, width, text alignment, margin, padding, font color, text decoration, text case, font weight, line height and more for all the sections. You are no longer required to use custom CSS codes to create the perfect Gravity Forms design template. The designs created with this plugin will work even if you change your theme. This is only Gravity Forms styler plugin you will ever need.\u003C\u002Fp>\n\u003Cp>You can easily create responsive designs like having different font size, widths, line height etc on desktops, tablets and mobile phones.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>You can set a different style for each form.\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Ch4>Premium Addons to Extend the Functionality\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwpmonks.com\u002Fdownloads\u002Fai-for-gravity-forms\u002F\" rel=\"nofollow ugc\"> \u003Cstrong>AI for Gravity Forms\u003C\u002Fstrong> \u003C\u002Fa>\u003Cbr \u002F>\n\u003Cstrong>This addon will add AI capabilities in your Gravity Forms.\u003C\u002Fstrong> You can generate AI text on form submission. You can optimize field labels. You can generate AI images on form submission with prompts that support merge tags. It also lets you use OpenAI’s vision capabilities to images uploaded using Gravity Forms File Upload field.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>Checkout the below video to have a quick glance of AI for Gravity Forms addon\u003Cbr \u002F>\n\u003Cspan class=\"embed-youtube\" style=\"text-align:center; display: block;\">\u003Ciframe loading=\"lazy\" class=\"youtube-player\" width=\"750\" height=\"422\" src=\"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FDhPTo93ICHQ?version=3&rel=1&showsearch=0&showinfo=1&iv_load_policy=1&fs=1&hl=en-US&autohide=2&wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox\">\u003C\u002Fiframe>\u003C\u002Fspan>\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwpmonks.com\u002Fdownloads\u002Fmaterial-design\u002F\" rel=\"nofollow ugc\"> \u003Cstrong>Material Design\u003C\u002Fstrong> \u003C\u002Fa>: \u003Ca href=\"https:\u002F\u002Fwpmonks.com\u002Fgravity-forms-material-design-demo\u002F\" rel=\"nofollow ugc\">Online Demo\u003C\u002Fa>\u003Cbr \u002F>\n\u003Cstrong>This addon will add material design to Gravity Form with single click of button\u003C\u002Fstrong>. Checkboxes can be converted into material design compatible switch buttons with ripple effect. Color of material design theme can be easily changed using color picker.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>Checkout the below video to have a quick glance of Material Design addon\u003Cbr \u002F>\n\u003Cspan class=\"embed-youtube\" style=\"text-align:center; display: block;\">\u003Ciframe loading=\"lazy\" class=\"youtube-player\" width=\"750\" height=\"422\" src=\"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FdVmKGGqUdlQ?version=3&rel=1&showsearch=0&showinfo=1&iv_load_policy=1&fs=1&hl=en-US&autohide=2&wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox\">\u003C\u002Fiframe>\u003C\u002Fspan>\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwpmonks.com\u002Fdownloads\u002Fcheckbox-radio-styler-for-gravity-forms\u002F\" rel=\"nofollow ugc\"> \u003Cstrong>Checkbox & Radio Styler\u003C\u002Fstrong> \u003C\u002Fa>: \u003Ca href=\"https:\u002F\u002Fwpmonks.com\u002Fcheckbox-radio-styler-for-gravity-forms-demo\u002F\" rel=\"nofollow ugc\">Online Demo\u003C\u002Fa>\u003Cbr \u002F>\n\u003Cstrong>This addon lets you change the design of checkbox and radio buttons\u003C\u002Fstrong>. There are plenty of design options to customize color, animations and style. You can use solid colors, images , switches or fontawesome icons inside checkbox and radio buttons.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>Checkout the below video to have a quick glance of Checkbox & Radio addon\u003Cbr \u002F>\n\u003Cspan class=\"embed-youtube\" style=\"text-align:center; display: block;\">\u003Ciframe loading=\"lazy\" class=\"youtube-player\" width=\"750\" height=\"422\" src=\"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FosG2MTgt8YA?version=3&rel=1&showsearch=0&showinfo=1&iv_load_policy=1&fs=1&hl=en-US&autohide=2&wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox\">\u003C\u002Fiframe>\u003C\u002Fspan>\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwpmonks.com\u002Fdownloads\u002Fgravity-forms-bootstrap-addon\u002F\" rel=\"nofollow ugc\">\u003Cstrong>Bootstrap Design\u003C\u002Fstrong>\u003C\u002Fa>:\u003Ca href=\"https:\u002F\u002Fwpmonks.com\u002Fgravity-form-bootstrap-design-demo\u002F\" rel=\"nofollow ugc\">Online Demo\u003C\u002Fa>\u003Cbr \u002F>\n\u003Cstrong>Bootstrap Design for Gravity Forms removes all the complexity and adds bootstrap to your form with one click\u003C\u002Fstrong> . This plugin uses Bootstrap 4. The bootsrap design will be applied to all fields, submit button, error & confirmation messages as well as progress bar. \u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>Checkout the below video to have a quick glance of Bootstrap Design addon\u003Cbr \u002F>\n\u003Cspan class=\"embed-youtube\" style=\"text-align:center; display: block;\">\u003Ciframe loading=\"lazy\" class=\"youtube-player\" width=\"750\" height=\"422\" src=\"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FdrR_U-7YPxg?version=3&rel=1&showsearch=0&showinfo=1&iv_load_policy=1&fs=1&hl=en-US&autohide=2&wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox\">\u003C\u002Fiframe>\u003C\u002Fspan>\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwpmonks.com\u002Fdownloads\u002Ftheme-pack\u002F\" rel=\"nofollow ugc\"> \u003Cstrong>Theme Pack\u003C\u002Fstrong> \u003C\u002Fa>:\u003Cbr \u002F>\n\u003Cstrong>Theme Pack for Styles and Layouts for Gravity Forms has a collection of 30+ beautifully crafted themes.\u003C\u002Fstrong> You will no longer need to change settings for each and every element of form. Gravity Forms Theme pack addon is highly configurable as you can modify the form design even after applying a theme. This addon has themes which uses gradient as background.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>Checkout the below video to have a quick glance of themes addon\u003Cbr \u002F>\n\u003Cspan class=\"embed-youtube\" style=\"text-align:center; display: block;\">\u003Ciframe loading=\"lazy\" class=\"youtube-player\" width=\"750\" height=\"422\" src=\"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FeYWCmBet54s?version=3&rel=1&showsearch=0&showinfo=1&iv_load_policy=1&fs=1&hl=en-US&autohide=2&wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox\">\u003C\u002Fiframe>\u003C\u002Fspan>\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwpmonks.com\u002Fdownloads\u002Ftooltips\u002F\" rel=\"nofollow ugc\"> \u003Cstrong>Tooltips\u003C\u002Fstrong> \u003C\u002Fa>: \u003Ca href=\"https:\u002F\u002Fwpmonks.com\u002Fgravity-forms-tooltips-demo\u002F\" rel=\"nofollow ugc\">Online Demo\u003C\u002Fa>\u003Cbr \u002F>\n\u003Cstrong>Tooltips addon lets you add tooltips next to field labels in Gravity Forms from customizer\u003C\u002Fstrong>. There are multiple colors, icons, animation effects, position options to make your tooltips look beautiful and resonate with your theme. \u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>Checkout the below video to have a quick glance of Tooltips addon\u003Cbr \u002F>\n\u003Cspan class=\"embed-youtube\" style=\"text-align:center; display: block;\">\u003Ciframe loading=\"lazy\" class=\"youtube-player\" width=\"750\" height=\"422\" src=\"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FNu_hK3Lo9CU?version=3&rel=1&showsearch=0&showinfo=1&iv_load_policy=1&fs=1&hl=en-US&autohide=2&wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox\">\u003C\u002Fiframe>\u003C\u002Fspan>\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwpmonks.com\u002Fdownloads\u002Ffield-icons\u002F\" rel=\"nofollow ugc\"> \u003Cstrong>Field Icons\u003C\u002Fstrong> \u003C\u002Fa>: \u003Ca href=\"https:\u002F\u002Fwpmonks.com\u002Fgravity-forms-field-icons-demo\u002F\" rel=\"nofollow ugc\">Online Demo\u003C\u002Fa>\u003Cbr \u002F>\n\u003Cstrong>Field Icons addon lets you add images as well as fontawesome icons to Gravity Form fields\u003C\u002Fstrong>. It supports image and fontawesome icons for phone, single line input, quantity, custom post fields, post tags, post title, date, email, website, address, name and number fields. It will automatically detect all the fields present inside the form and give you the option to set icons for them. You can also change the position of icons from left to right. It also comes with an option to set padding for icon fields so that the form text doesn’t overlap with the icon. \u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>Checkout the below video to have a quick glance of Field Icons addon\u003Cbr \u002F>\n\u003Cspan class=\"embed-youtube\" style=\"text-align:center; display: block;\">\u003Ciframe loading=\"lazy\" class=\"youtube-player\" width=\"750\" height=\"422\" src=\"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FKcMMW4ps_ts?version=3&rel=1&showsearch=0&showinfo=1&iv_load_policy=1&fs=1&hl=en-US&autohide=2&wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox\">\u003C\u002Fiframe>\u003C\u002Fspan>\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\n\u003Cp>\u003Ca href=\"https:\u002F\u002Fwpmonks.com\u002Fdownloads\u002Fcustom-themes\u002F\" rel=\"nofollow ugc\"> \u003Cstrong>Custom Themes\u003C\u002Fstrong> \u003C\u002Fa>:\u003Cbr \u002F>\n\u003Cstrong>Custom Themes addon for Styles and Layouts for Gravity Forms lets you save your own form designs as themes.\u003C\u002Fstrong> You can create unlimited themes and apply them on unlimited forms. This addon will save a lot of time if you want to make two forms with same styling. You are free to modify the form design even after you have applied a theme.\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>\u003Ca href=\"https:\u002F\u002Fwpmonks.com\u002Fdownloads\u002Faddon-bundle\u002F\" rel=\"nofollow ugc\"> \u003Cstrong>Addon Bundle\u003C\u002Fstrong>\u003C\u002Fa>:\u003Cbr \u002F>\nAddon Bundle is a collection of all the addons of Styles and Layouts for Gravity Forms and you will get it a special discounted price.\u003C\u002Fp>\n\u003C\u002Fli>\n\u003C\u002Ful>\n","Gravity Booster - Styles and Layouts for Gravity Forms plugin lets you design and style Gravity Forms without CSS coding. You can also use it for addi &hellip;",40000,1268298,92,196,"2025-09-25T12:26:00.000Z","6.8.5","4.0","",[98,99,100,101],"gravity-forms-css","gravity-forms-design","gravity-forms-styler","gravity-forms-tooltips","http:\u002F\u002Fwpmonks.com\u002Fstyles-layouts-gravity-forms","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fstyles-and-layouts-for-gravity-forms.5.26.zip",{"slug":105,"name":106,"version":107,"author":108,"author_profile":109,"description":110,"short_description":111,"active_installs":112,"downloaded":113,"rating":114,"num_ratings":79,"last_updated":115,"tested_up_to":116,"requires_at_least":117,"requires_php":96,"tags":118,"homepage":123,"download_link":124,"security_score":13,"vuln_count":25,"unpatched_count":25,"last_vuln_date":26,"fetched_at":27},"acf-gravityforms-add-on","Advanced Custom Fields: Gravity Forms Add-on","1.3.10","DannyvanHolten","https:\u002F\u002Fprofiles.wordpress.org\u002Fdannyvanholten\u002F","\u003Cp>Provides an Advanced Custom Field which allows a WordPress editorial user or administrator to select a Gravity Form as part of a field group configuration.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>This plugin does not have any effect on the frontend of the website. It does not output the form, nor does it modify the output of existing forms. The plugin only adds a custom ACF field type for use in an ACF field group.\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>Full documentation can be found in the \u003Ca href=\"https:\u002F\u002Fgithub.com\u002FSayHelloGmbH\u002Facf-gravityforms-add-on\u002F\" rel=\"nofollow ugc\">plugin’s GitHub Repository\u003C\u002Fa>.\u003C\u002Fp>\n\u003Ch3>Development\u003C\u002Fh3>\n\u003Cp>Version 1.3.2 added a plain HTML filter to the output of the field. This filter is not applied to fields in ACF version 4.\u003C\u002Fp>\n\u003Cpre>\u003Ccode>apply_filters('acf-gravityforms-add-on\u002Ffield_html', string $field_html, array $field, string $field_options, string $multiple)\n\u003C\u002Fcode>\u003C\u002Fpre>\n","Provides an Advanced Custom Field which allows a WordPress user to select a Gravity Form as part of a field group configuration.",30000,552315,84,"2025-12-02T17:20:00.000Z","6.9.0","4.6",[119,120,121,21,122],"acf","advanced-custom-fields","form","sayhellogmbh","https:\u002F\u002Fgithub.com\u002Fsayhellogmbh\u002Facf-gravityforms-add-on","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Facf-gravityforms-add-on.1.3.10.zip",{"slug":126,"name":127,"version":128,"author":129,"author_profile":130,"description":131,"short_description":132,"active_installs":133,"downloaded":134,"rating":13,"num_ratings":135,"last_updated":136,"tested_up_to":137,"requires_at_least":138,"requires_php":139,"tags":140,"homepage":145,"download_link":146,"security_score":91,"vuln_count":25,"unpatched_count":25,"last_vuln_date":26,"fetched_at":27},"gravity-forms-google-analytics-event-tracking","Event Tracking for Gravity Forms","2.5.0","Ronald Huereca","https:\u002F\u002Fprofiles.wordpress.org\u002Fronalfy\u002F","\u003Cblockquote>\n\u003Cp>Gravity Forms has launched \u003Ca href=\"https:\u002F\u002Fwww.gravityforms.com\u002Fadd-ons\u002Fgoogle-analytics\u002F\" rel=\"nofollow ugc\">an official Google Analytics Add-on\u003C\u002Fa>. It is the successor to this plugin.\u003C\u002Fp>\n\u003C\u002Fblockquote>\n\u003Cp>This plugin provides an easy way to add event tracking to your Gravity Forms using Google Analytics and Google Tag Manager.\u003C\u002Fp>\n\u003Cp>This plugin support Google Analytics 3 and \u003Ca href=\"https:\u002F\u002Fmediaron.com\u002Fevent-tracking-with-gravity-forms-and-google-analytics-4\u002F\" rel=\"nofollow ugc\">Google Analytics 4\u003C\u002Fa>.\u003C\u002Fp>\n\u003Cp>\u003Cspan class=\"embed-youtube\" style=\"text-align:center; display: block;\">\u003Ciframe loading=\"lazy\" class=\"youtube-player\" width=\"750\" height=\"422\" src=\"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FrHW3roCuNSI?version=3&rel=1&showsearch=0&showinfo=1&iv_load_policy=1&fs=1&hl=en-US&autohide=2&start=2&wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox\">\u003C\u002Fiframe>\u003C\u002Fspan>\u003C\u002Fp>\n\u003Cp>\u003Cspan class=\"embed-youtube\" style=\"text-align:center; display: block;\">\u003Ciframe loading=\"lazy\" class=\"youtube-player\" width=\"750\" height=\"422\" src=\"https:\u002F\u002Fwww.youtube.com\u002Fembed?version=3&rel=1&showsearch=0&showinfo=1&iv_load_policy=1&fs=1&hl=en-US&autohide=2&wmode=transparent&listType=playlist&list=PLw2fSxxzure57usQNLMZrIAwn3DbRmaaF\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox\">\u003C\u002Fiframe>\u003C\u002Fspan>\u003C\u002Fp>\n\u003Cp>Also supports:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Pagination events\u003C\u002Fli>\n\u003Cli>JS only events\u003C\u002Fli>\n\u003Cli>Google Tag Manager\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Setup Guide\u003C\u002Fh4>\n\u003Cp>Looking for help setting things up? \u003Ca href=\"https:\u002F\u002Fmediaron.com\u002Fevent-tracking-for-gravity-forms\u002F?utm_source=wordpress_org&utm_medium=documentation&utm_campaign=event_tracking\" rel=\"nofollow ugc\">Read Our Setup Guide\u003C\u002Fa>\u003C\u002Fp>\n\u003Ch4>Minimum Requirements\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Gravity Forms 2.5\u003C\u002Fli>\n\u003Cli>Google Analytics Universal Analytics v3\u003C\u002Fli>\n\u003Cli>Google Tag Manager (optional)\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Features\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Submit events to Google Analytics using the Measurement Protocol, JavaScript, or using Google Tag Manager\u003C\u002Fli>\n\u003Cli>Add multiple event feeds with conditionals\u003C\u002Fli>\n\u003Cli>Custom event categories, actions, labels and even values\u003C\u002Fli>\n\u003Cli>Track form pagination events\u003C\u002Fli>\n\u003Cli>Dynamic event value on payment forms (integration with the payment add-ons including Paypal Standard, PayPal Pro, Stripe, etc…)\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>For payment based forms, you can leave the value blank to convert using the total payment amount.\u003C\u002Fp>\n\u003Cp>Development happens on \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fronalfy\u002Fwordpress-gravity-forms-event-tracking\u002F\" rel=\"nofollow ugc\">GitHub\u003C\u002Fa>.\u003C\u002Fp>\n\u003Cblockquote>\n\u003Cp>Please \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fsupport\u002Fplugin\u002Fgravity-forms-google-analytics-event-tracking\u002Freviews\u002F#new-post\" rel=\"ugc\">Rate the Plugin\u003C\u002Fa> or \u003Ca href=\"https:\u002F\u002Fmediaron.com\u002Fgive\u002F\" rel=\"nofollow ugc\">Give Back\u003C\u002Fa> to show support.\u003C\u002Fp>\n\u003C\u002Fblockquote>\n\u003Cp>Get the official Gravity Forms Google Analytics Add-on\u003C\u002Fp>\n\u003Cp>The official Gravity Forms add-on is here and is the successor to this plugin.\u003C\u002Fp>\n\u003Cp>Find out more details about the \u003Ca href=\"https:\u002F\u002Fwww.gravityforms.com\u002Fadd-ons\u002Fgoogle-analytics\u002F\" rel=\"nofollow ugc\">Gravity Forms Google Analytics Add-on\u003C\u002Fa>.\u003C\u002Fp>\n","Easily add event tracking using Gravity Forms and your Google Analytics or Google Tag Manager account. Supports Google Analytics v3 and Gravity Forms  &hellip;",20000,673836,37,"2024-11-03T23:15:00.000Z","6.7.5","5.5","5.6",[141,142,21,143,144],"google-analytics","google-tag-manager","matomo","piwik","https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fgravity-forms-google-analytics-event-tracking\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fgravity-forms-google-analytics-event-tracking.2.5.0.zip",{"attackSurface":148,"codeSignals":290,"taintFlows":321,"riskAssessment":341,"analyzedAt":353},{"hooks":149,"ajaxHandlers":272,"restRoutes":281,"shortcodes":282,"cronEvents":287,"entryPointCount":288,"unprotectedCount":289},[150,156,161,166,172,176,180,185,188,192,196,200,204,208,212,216,220,224,228,232,236,241,246,250,254,258,261,265,269],{"type":151,"name":152,"callback":153,"file":154,"line":155},"filter","the_content","pods_gf_ui_content","includes\\functions.php",143,{"type":151,"name":157,"callback":158,"priority":31,"file":159,"line":160},"gform_entry_post_save","_gf_entry_post_save","includes\\Pods_GF.php",278,{"type":151,"name":162,"callback":163,"priority":164,"file":159,"line":165},"gform_field_input","gf_field_input_read_only",20,3049,{"type":167,"name":168,"callback":169,"priority":31,"file":170,"line":171},"action","gform_field_standard_settings","populate_related_items_settings","includes\\Pods_GF_Addon.php",800,{"type":151,"name":173,"callback":174,"file":170,"line":175},"gform_tooltips","populate_related_items_tooltip",801,{"type":167,"name":177,"callback":178,"file":170,"line":179},"gform_editor_js","populate_related_items_editor_script",802,{"type":151,"name":181,"callback":182,"priority":183,"file":170,"line":184},"gform_pre_render","_gf_pre_render",9,876,{"type":151,"name":186,"callback":182,"priority":183,"file":170,"line":187},"gform_admin_pre_render",877,{"type":151,"name":189,"callback":190,"file":170,"line":191},"gform_pre_process","_gf_pre_process",878,{"type":151,"name":193,"callback":194,"priority":31,"file":170,"line":195},"gform_custom_merge_tags","_gf_custom_merge_tags",881,{"type":151,"name":197,"callback":198,"priority":31,"file":170,"line":199},"gform_merge_tag_data","_gf_add_merge_tags",882,{"type":151,"name":201,"callback":202,"priority":31,"file":170,"line":203},"gform_replace_merge_tags","_gf_replace_merge_tags",883,{"type":167,"name":205,"callback":206,"priority":31,"file":170,"line":207},"gform_pre_entry_detail","_gf_pre_entry_detail",886,{"type":167,"name":209,"callback":210,"priority":31,"file":170,"line":211},"check_admin_referer","_check_admin_referer",887,{"type":167,"name":213,"callback":214,"priority":31,"file":170,"line":215},"gform_entry_detail_content_before","_gf_entry_detail_content_before",888,{"type":167,"name":217,"callback":218,"priority":183,"file":170,"line":219},"gform_post_update_entry","_gf_post_update_entry",891,{"type":167,"name":221,"callback":222,"priority":183,"file":170,"line":223},"gform_after_update_entry","_gf_after_update_entry",892,{"type":167,"name":225,"callback":226,"priority":31,"file":170,"line":227},"gform_action_pre_payment_callback","_gf_action_pre_payment_callback",895,{"type":151,"name":229,"callback":230,"file":170,"line":231},"gform_export_form","_gf_export_form",1671,{"type":167,"name":233,"callback":234,"file":170,"line":235},"gform_forms_post_import","_gf_forms_post_import",1672,{"type":151,"name":237,"callback":238,"file":239,"line":240},"pods_gf_to_pods_update_pod_items","__return_true","includes\\Pods_GF_CLI.php",35,{"type":167,"name":242,"callback":243,"file":244,"line":245},"plugins_loaded","pods_gf_include_gf_addon","pods-gravity-forms.php",88,{"type":167,"name":247,"callback":248,"priority":14,"file":244,"line":249},"wp","pods_gf_ui_init",103,{"type":167,"name":251,"callback":252,"file":244,"line":253},"init","pods_gf_init",117,{"type":151,"name":255,"callback":256,"file":244,"line":257},"gform_duplicate_prevention_load_script","__return_false",121,{"type":167,"name":242,"callback":259,"file":244,"line":260},"pods_gf_admin_nag",126,{"type":167,"name":262,"callback":263,"file":244,"line":264},"pods_form_ui_field_pick_related_objects_other","pods_gf_add_related_objects",150,{"type":151,"name":266,"callback":267,"file":244,"line":268},"wp_plugin_check_ignore_files","closure",186,{"type":151,"name":270,"callback":267,"file":244,"line":271},"wp_plugin_check_ignore_directories",201,[273,278],{"action":274,"nopriv":275,"callback":276,"hasNonce":275,"hasCapCheck":275,"file":244,"line":277},"pods_gf_save_for_later",false,"pods_gf_save_for_later_ajax",109,{"action":274,"nopriv":279,"callback":276,"hasNonce":275,"hasCapCheck":275,"file":244,"line":280},true,110,[],[283],{"tag":284,"callback":285,"file":244,"line":286},"pods-gf-ui","pods_gf_ui_shortcode",106,[],3,2,{"dangerousFunctions":291,"sqlUsage":292,"outputEscaping":295,"fileOperations":25,"externalRequests":25,"nonceChecks":25,"capabilityChecks":25,"bundledLibraries":320},[],{"prepared":293,"raw":25,"locations":294},13,[],{"escaped":296,"rawEcho":31,"locations":297},66,[298,302,304,306,308,310,312,314,316,318],{"file":299,"line":300,"context":301},"includes\\Pods_GF_UI.php",838,"raw output",{"file":299,"line":303,"context":301},933,{"file":299,"line":305,"context":301},941,{"file":299,"line":307,"context":301},1021,{"file":299,"line":309,"context":301},1029,{"file":299,"line":311,"context":301},1067,{"file":299,"line":313,"context":301},1137,{"file":299,"line":315,"context":301},1145,{"file":299,"line":317,"context":301},1186,{"file":244,"line":319,"context":301},131,[],[322],{"entryPoint":323,"graph":324,"unsanitizedCount":339,"severity":340},"\u003CPods_GF> (includes\\Pods_GF.php:0)",{"nodes":325,"edges":337},[326,331],{"id":327,"type":328,"label":329,"file":159,"line":330},"n0","source","$_GET",2400,{"id":332,"type":333,"label":334,"file":159,"line":335,"wp_function":336},"n1","sink","call_user_func_array() [RCE]",2514,"call_user_func_array",[338],{"from":327,"to":332,"sanitized":275},1,"high",{"summary":342,"deductions":343},"The \"pods-gravity-forms\" plugin v1.6.0 exhibits a mixed security posture. On the positive side, it demonstrates good practices by utilizing prepared statements for all SQL queries, avoiding file operations and external HTTP requests. The high percentage of properly escaped outputs (87%) is also commendable. However, significant concerns arise from the attack surface analysis.  With two AJAX handlers and a total of three entry points, a substantial portion (two-thirds) of these entry points lack authentication checks.  This is further compounded by the absence of nonce checks and capability checks, creating a clear pathway for potential unauthorized access and actions.\n\nThe taint analysis reveals one flow with unsanitized paths, categorized as high severity. This indicates that data processed by the plugin might be vulnerable to manipulation if not handled with proper sanitization before being used in sensitive operations, especially considering the lack of authorization on the identified entry points.  The plugin's vulnerability history is currently clean, with no known CVEs. This absence of past vulnerabilities could suggest good development practices or simply a lack of past discovery. Nevertheless, the current findings of unprotected entry points and a high-severity taint flow present tangible risks that need immediate attention.\n\nIn conclusion, while the plugin excels in areas like database query security and output escaping, the significant presence of unprotected entry points and a high-severity unsanitized path flow are critical weaknesses. The lack of authentication on AJAX handlers and the absence of nonce\u002Fcapability checks create a high risk of unauthorized actions and potential exploitability. The clean vulnerability history is a positive indicator but does not negate the immediate risks identified in the static analysis.",[344,346,348,351],{"reason":345,"points":31},"Unprotected AJAX handlers",{"reason":347,"points":31},"High severity unsanitized path flow",{"reason":349,"points":350},"Missing nonce checks",5,{"reason":352,"points":350},"Missing capability checks","2026-03-16T18:58:49.475Z",{"wat":355,"direct":364},{"assetPaths":356,"generatorPatterns":359,"scriptPaths":360,"versionParams":361},[357,358],"\u002Fwp-content\u002Fplugins\u002Fpods-gravity-forms\u002Fassets\u002Fcss\u002Fpods-gravity-forms.css","\u002Fwp-content\u002Fplugins\u002Fpods-gravity-forms\u002Fassets\u002Fjs\u002Fpods-gravity-forms.js",[],[358],[362,363],"pods-gravity-forms\u002Fassets\u002Fcss\u002Fpods-gravity-forms.css?ver=","pods-gravity-forms\u002Fassets\u002Fjs\u002Fpods-gravity-forms.js?ver=",{"cssClasses":365,"htmlComments":366,"htmlAttributes":367,"restEndpoints":369,"jsGlobals":370,"shortcodeOutput":371},[284],[],[368],"data-pods-gf-ui",[],[276],[372],"[pods-gf-ui]"]