[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$fYW_u7eA7FQTyQQvI6CJubXaSQZcyXGgCEiX5ITRGJJY":3,"$fj63RxuGev5PTb6OSQBe17ZwqGKXHWiwZHxzu2i13Vho":250,"$fsY4LhYO3w4S5FwsnVdR09qHXqm0YArPmhp2yf_lQwI4":255},{"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":25,"download_link":26,"security_score":13,"vuln_count":27,"unpatched_count":27,"last_vuln_date":28,"fetched_at":29,"discovery_status":30,"vulnerabilities":31,"developer":32,"crawl_stats":28,"alternatives":38,"analysis":140,"fingerprints":234},"f4-woocommerce-simple-checkout-fields","F4 Simple Checkout Fields for WooCommerce","1.0.16","FAKTOR VIER","https:\u002F\u002Fprofiles.wordpress.org\u002Ffaktorvier\u002F","\u003Cp>With \u003Ca href=\"https:\u002F\u002Fwww.f4dev.ch\" rel=\"nofollow ugc\">F4 Simple Checkout Fields for WooCommerce\u003C\u002Fa> you can simply add new fields to the WooCommerce checkout. There is no UI to manage the fields, they only can be added with a simple PHP method. That ensures that the plugin is lightweight and easy to handle, even though you need simple PHP knowledge and access to the file system to add the code (preferred your WordPress theme).\u003C\u002Fp>\n\u003Ch4>Usage\u003C\u002Fh4>\n\u003Cp>If you first install this plugin, it will do nothing. But it provides a method to add as many custom fields to your checkout as you need. Here’s a sample how you could add a simple text field to the billing and shipping address:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>add_action('init', function() {\n    F4\\WCSCF\\Core\\Helpers::register_field(array(\n        'name' => 'demo-text',\n        'type' => 'text',\n        'label' => 'Text Field'\n    ));\n});\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Ch3>Arguments\u003C\u002Fh3>\n\u003Cp>The register_field method provides a lot of arguments to customize your fields. Some of the arguments are identically to \u003Ca href=\"https:\u002F\u002Fdocs.woocommerce.com\u002Fdocument\u002Ftutorial-customising-checkout-fields-using-actions-and-filters\u002F\" rel=\"nofollow ugc\">the officiel WooCommerce arguments\u003C\u002Fa>:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>F4\\WCSCF\\Core\\Helpers::register_field(array(\n    \u002F\u002F (array) Defines where the field should be added\n    \u002F\u002F billing = billing address, shipping = shipping address\n    'target' => array('billing', 'shipping'),\n\n    \u002F\u002F (string) The internal name for the field. Must be unique\n    'name' => '',\n\n    \u002F\u002F (string) The field type (text, textarea, password, select)\n    'type' => 'text',\n\n    \u002F\u002F (string) The field label\n    'label' => '',\n\n    \u002F\u002F (string) The description\n    'description' => '',\n\n    \u002F\u002F (string) The placeholder for the input (only text, textarea or password)\n    'placeholder' => '',\n\n    \u002F\u002F (boolean) Defines if the field is required or not\n    'required' => false,\n\n    \u002F\u002F (string) The default value\n    'default' => '',\n\n    \u002F\u002F (array) An array with css classes that should be added to the field\n    'class' => array(),\n\n    \u002F\u002F (array) An array with field options (only for field type select)\n    \u002F\u002F Array key => value pairs: array('value' => 'Label')\n    'options' => array(),\n\n    \u002F\u002F (string|array) Defines the position, where the field should be added\n    \u002F\u002F last = append after the last field\n    \u002F\u002F first = prepend before the first field\n    \u002F\u002F array('before' => 'fieldname') = prepend before the defined field\n    \u002F\u002F array('after' => 'fieldname') = append after the defined field\n    'position' => 'last', \u002F\u002F 'first', 'last', array('before' => ''), array('after' => '')\n\n    \u002F\u002F (string) The delimiter that should be used in the formatted address outputs\n    'formatted_address_delimiter' => \"\\n\",\n\n    \u002F\u002F (boolean) Defines if the field should be displayed after the formatted address in the order backend or not\n    'show_after_formatted_admin_order_address' => false,\n\n    \u002F\u002F (boolean) Defines if the field label should be prepended before the field value in formatted address\n    'show_formatted_address_label' => false,\n\n    \u002F\u002F (boolean) Defines if the field should be displayed in the account address forms\n    'show_in_address_form' => true,\n\n    \u002F\u002F (boolean) Defines if the field should be displayed in the checkout forms\n    'show_in_order_form' => true,\n\n    \u002F\u002F (boolean) Defines if the field should be displayed in the formatted address\n    'show_in_formatted_address' => true,\n\n    \u002F\u002F (boolean) Defines if the field should be displayed in the admin user form\n    'show_in_admin_user_form' => true,\n\n    \u002F\u002F (boolean) Defines if the field should be displayed in the admin order form\n    'show_in_admin_order_form' => true,\n\n    \u002F\u002F (boolean) Defines if the field should be displayed in the privacy customer data\n    'show_in_privacy_customer_data' => true,\n\n    \u002F\u002F (boolean) Defines if the field should be displayed in the privacy order data\n    'show_in_privacy_order_data' => true\n));\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Ch4>Features overview\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Adds custom text, textarea, password and select fields to the checkout\u003C\u002Fli>\n\u003Cli>Easy to use\u003C\u002Fli>\n\u003Cli>Lightweight and optimized\u003C\u002Fli>\n\u003Cli>100% free!\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Planned features\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Full integration into API and REST\u003C\u002Fli>\n\u003C\u002Ful>\n","Adds custom fields to the WooCommerce checkout.",10,1993,100,1,"2025-12-16T12:54:00.000Z","6.9.4","5.0","7.0",[20,21,22,23,24],"checkout","ecommerce","fields","shop","woocommerce","https:\u002F\u002Fgithub.com\u002Ffaktorvier\u002Ff4-woocommerce-simple-checkout-fields","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Ff4-woocommerce-simple-checkout-fields.1.0.16.zip",0,null,"2026-04-16T10:56:18.058Z","no_bundle",[],{"slug":33,"display_name":7,"profile_url":8,"plugin_count":34,"total_installs":35,"avg_security_score":13,"avg_patch_time_days":34,"trust_score":36,"computed_at":37},"faktorvier",8,3910,94,"2026-05-20T08:06:45.662Z",[39,60,79,98,114],{"slug":40,"name":41,"version":42,"author":43,"author_profile":44,"description":45,"short_description":46,"active_installs":47,"downloaded":48,"rating":49,"num_ratings":50,"last_updated":51,"tested_up_to":52,"requires_at_least":53,"requires_php":54,"tags":55,"homepage":57,"download_link":58,"security_score":59,"vuln_count":27,"unpatched_count":27,"last_vuln_date":28,"fetched_at":29},"auto-register-for-woocommerce","Auto Register for WooCommerce","1.0.1","palmoduledev","https:\u002F\u002Fprofiles.wordpress.org\u002Fpalmoduledev\u002F","\u003Cp>Once activated, Auto Register for WooCommerce will create a WordPress user account for your customer, No coding or configuration required.\u003C\u002Fp>\n","Once activated, Auto Register for WooCommerce will create a WordPress user account for your customer",50,3088,64,5,"2019-03-09T04:45:00.000Z","5.1.0","3.0.1","",[56,20,21,23,24],"cart","https:\u002F\u002Fprofiles.wordpress.org","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fauto-register-for-woocommerce.1.0.1.zip",85,{"slug":61,"name":62,"version":63,"author":62,"author_profile":64,"description":65,"short_description":66,"active_installs":11,"downloaded":67,"rating":27,"num_ratings":27,"last_updated":68,"tested_up_to":69,"requires_at_least":70,"requires_php":71,"tags":72,"homepage":77,"download_link":78,"security_score":59,"vuln_count":27,"unpatched_count":27,"last_vuln_date":28,"fetched_at":29},"shopinext-for-woocommerce","Shopinext","1.0.4","https:\u002F\u002Fprofiles.wordpress.org\u002Fshopinext\u002F","\u003Cp>Payment tracking is much easier with the Shopinext plugin specially developed for WooCommerce!\u003C\u002Fp>\n","Payment tracking is much easier with the Shopinext plugin specially developed for WooCommerce!",1347,"2022-03-10T07:24:00.000Z","5.9.13","4.7","5.4",[73,74,21,75,76],"checkout-woocommerce","credit-card","payment","shopinext","https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fshopinext-for-woocommerce","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fshopinext-for-woocommerce.zip",{"slug":80,"name":81,"version":82,"author":83,"author_profile":84,"description":85,"short_description":86,"active_installs":11,"downloaded":87,"rating":27,"num_ratings":27,"last_updated":88,"tested_up_to":89,"requires_at_least":90,"requires_php":54,"tags":91,"homepage":54,"download_link":97,"security_score":59,"vuln_count":27,"unpatched_count":27,"last_vuln_date":28,"fetched_at":29},"woo-extended-settings","Extended Settings for WooCommerce","1.0.0","Nagy Paul Sorel","https:\u002F\u002Fprofiles.wordpress.org\u002Fnpsorel\u002F","\u003Cp>Extended Settings for WooCommerce is a plugin meant to work as a companion to your WooCommerce e-store.\u003Cbr \u002F>\nIt allows your store to be more versatile and increase conversions by making several tweaks possible without the need for you to code or have any coding expertise.\u003Cbr \u002F>\nPersonalize your WooCommerce store by hiding or displaying add to card buttons, enabling one-page shopping, showing or hiding related products on the checkout page, custom billing fields and more.\u003C\u002Fp>\n\u003Cp>This plugin empowers you to personalize your store by:\u003Cbr \u002F>\n– Enabling One Page Shopping – last added product, cart and checkout details on the same page\u003Cbr \u002F>\n– Removing related products section from the single product page\u003Cbr \u002F>\n– Removing the ‘add to cart’ button both from single product page and shop page\u003Cbr \u002F>\n– Removing the price of product from single page product\u003Cbr \u002F>\n– Removing the title of product from single page product\u003Cbr \u002F>\n– Removing the rating of product from single page product\u003Cbr \u002F>\n– Removing the excerpt of product from single page product\u003Cbr \u002F>\n– Removing the category text of product from single page product\u003Cbr \u002F>\n– Removing the additional information tab of product from single page product\u003Cbr \u002F>\n– Removing the reviews tab of product from single page product\u003Cbr \u002F>\n– Removing the ‘Product has been added to your cart.’ message\u003Cbr \u002F>\n– Redirecting the customer to the shop page if the cart is empty\u003Cbr \u002F>\n– Removing individual billing fields such as first name, last name, company, address, address line 2, country, city, zip code, email or phone\u003Cbr \u002F>\n– Removing individual shipping fields such as first name, last name, company, address, address line 2, country, city, zip code, email or phone\u003Cbr \u002F>\n– Removing the order notes fields\u003C\u002Fp>\n\u003Cp>You can use all the features or select just the ones that make most sense for your business. Moreover, we encourage you to send us requests for any new features you may need and we’ll do our best to implement them quickly.\u003C\u002Fp>\n\u003Cp>SEO Friendly\u003Cbr \u002F>\nAll of the above are changes implemented at code level, and they are not hidden using CSS, therefore Google will not penalize you for links hidden on the page or hidden text.\u003C\u002Fp>\n\u003Cp>Sleek plugin designed to add versatility to WooCommerce.\u003Cbr \u002F>\nOur team designed this useful tool specifically for our website and then we realized more people might benefit from added WooCommerce functionality. It is compatible with other plugins we tested, however, should you find any inconsistencies please leave us a note and we’ll fix any issues as soon as possible. Supports one-page shopping, redirect if the cart is empty, remove additional product information, remove selected billing and shipping fields, and more settings that normally require adding code to functions.php. Save time and use WooCommerce Extended Settings. Should you require any additional functionalities, feel free to write to us and we will be happy to develop solutions for you.\u003C\u002Fp>\n","Sleek plugin designed to add versatility to WooCommerce. Supports One Page Shopping, redirect if cart is empty, remove additional product information, &hellip;",1052,"2019-09-10T15:32:00.000Z","5.2.24","4.0",[92,93,94,95,96],"checkout-one-page-shopping","extended-settings-for-woocommerce","woocommerce-extended-settings","woocommerce-remove-billing-fields","woocommerce-remove-shipping-fields","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fwoo-extended-settings.zip",{"slug":99,"name":100,"version":82,"author":101,"author_profile":102,"description":103,"short_description":104,"active_installs":27,"downloaded":105,"rating":27,"num_ratings":27,"last_updated":106,"tested_up_to":16,"requires_at_least":107,"requires_php":108,"tags":109,"homepage":54,"download_link":112,"security_score":13,"vuln_count":27,"unpatched_count":27,"last_vuln_date":28,"fetched_at":113},"dealicious-conditional-checkout-rules","Dealicious Conditional Checkout Rules for WooCommerce","Md Rashed Hossain","https:\u002F\u002Fprofiles.wordpress.org\u002Fwprashed\u002F","\u003Cp>Dealicious Conditional Checkout Rules for WooCommerce lets store owners create ordered rules to control WooCommerce checkout field visibility.\u003C\u002Fp>\n\u003Cp>Use conditions for:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Product type in cart (physical, virtual, downloadable, or specific WooCommerce product types)\u003C\u002Fli>\n\u003Cli>Billing country (ISO2 list like \u003Ccode>US,CA,GB\u003C\u002Fcode>)\u003C\u002Fli>\n\u003Cli>Cart value range (minimum and\u002For maximum)\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>How rules work:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Rules are processed top to bottom\u003C\u002Fli>\n\u003Cli>All conditions in one rule use AND logic\u003C\u002Fli>\n\u003Cli>If multiple rules match the same field, the last matched rule wins\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>Plugin highlights:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Live show\u002Fhide behavior on checkout\u003C\u002Fli>\n\u003Cli>Works with country changes at checkout\u003C\u002Fli>\n\u003Cli>Handles required-field validation for hidden fields\u003C\u002Fli>\n\u003Cli>Settings available in \u003Ccode>WooCommerce > Dealicious Conditional Checkout Rules for WooCommerce\u003C\u002Fcode>\u003C\u002Fli>\n\u003C\u002Ful>\n","Dynamically show or hide WooCommerce checkout fields based on product type, billing country, and cart value.",163,"2026-03-17T03:05:00.000Z","6.0","7.4",[20,110,111,21,24],"checkout-fields","conditional-logic","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fdealicious-conditional-checkout-rules.1.0.0.zip","2026-04-06T09:54:40.288Z",{"slug":115,"name":116,"version":117,"author":118,"author_profile":119,"description":120,"short_description":121,"active_installs":122,"downloaded":123,"rating":124,"num_ratings":125,"last_updated":126,"tested_up_to":16,"requires_at_least":127,"requires_php":128,"tags":129,"homepage":135,"download_link":136,"security_score":137,"vuln_count":138,"unpatched_count":27,"last_vuln_date":139,"fetched_at":29},"woo-checkout-field-editor-pro","Checkout Field Editor (Checkout Manager) for WooCommerce","2.1.8","ThemeHigh","https:\u002F\u002Fprofiles.wordpress.org\u002Fthemehigh\u002F","\u003Cp>\u003Cstrong>WooCommerce Checkout Field Editor\u003C\u002Fstrong> enables you to edit the default checkout fields of your WooCommerce platform, add, edit, hide, or delete the default fields, change labels, rearrange checkout fields, validate the checkout fields, add custom css classes etc.\u003C\u002Fp>\n\u003Cp>🔥 \u003Cstrong>#The Ultimate Solution for Customizing WooCommerce Checkout Fields\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>The default WooCommerce checkout field editor offers only basic fields, limiting the ability to collect crucial information. Moreover, manually customizing checkout fields with code is time-consuming and complex and leads to the following issues\u003C\u002Fp>\n\u003Cp>❌ \u003Cstrong>No Personalization\u003C\u002Fstrong> – Customers expect a seamless, customized experience, but the default setup doesn’t allow it.\u003Cbr \u002F>\n❌ \u003Cstrong>Poor User Experience\u003C\u002Fstrong> – A cluttered checkout page with unnecessary fields can frustrate customers, leading to cart abandonment.\u003Cbr \u002F>\n❌ \u003Cstrong>Reduced Conversions\u003C\u002Fstrong> – An unoptimized checkout process can increase drop-offs and lower sales.\u003C\u002Fp>\n\u003Ch3>How WooCommerce Checkout Field Editor (Checkout Manager) simplifies customization?\u003C\u002Fh3>\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\u002FeMGjviRHyfo?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\u003Cp>✳️ \u003Cstrong>Complete Checkout Field Customization \u003Cspan aria-hidden=\"true\" class=\"wp-exclude-emoji\">→\u003C\u002Fspan>\u003C\u002Fstrong> Effortlessly add, edit, remove, and rearrange fields.\u003C\u002Fp>\n\u003Cp>✳️ \u003Cstrong>24+ Field Types\u003Cspan aria-hidden=\"true\" class=\"wp-exclude-emoji\">→\u003C\u002Fspan>\u003C\u002Fstrong> Add additional field types to your Checkout page.\u003C\u002Fp>\n\u003Cp>✳️ \u003Cstrong>Optimized for Conversions \u003Cspan aria-hidden=\"true\" class=\"wp-exclude-emoji\">→\u003C\u002Fspan>\u003C\u002Fstrong> Create a seamless checkout flow, reducing friction and increasing sales.\u003C\u002Fp>\n\u003Cp>✳️ \u003Cstrong>Compatible with Classic & Block Checkout \u003Cspan aria-hidden=\"true\" class=\"wp-exclude-emoji\">→\u003C\u002Fspan>\u003C\u002Fstrong> Effortlessly customize fields, whether you’re using the classic checkout layout or the modern block-based layout  .\u003C\u002Fp>\n\u003Cp>✳️ \u003Cstrong>Custom Hooks \u003Cspan aria-hidden=\"true\" class=\"wp-exclude-emoji\">→\u003C\u002Fspan>\u003C\u002Fstrong> Easily Add more functionalities features with developer-friendly custom Hooks.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>👉Note:\u003C\u002Fstrong> Block Compatibility \u003Cspan aria-hidden=\"true\" class=\"wp-exclude-emoji\">→\u003C\u002Fspan> Our Checkout Field Editor (Checkout Manager) for WooCommerce now supports WooCommerce Checkout Blocks, allowing customization with Text, Select, Radio, and Checkbox fields, plus validation for Email, Phone, and URL. More field types will be added in upcoming updates.\u003C\u002Fp>\n\u003Cp>\u003Ca href=\"\u002F\u002Fflydemos.com\u002Fwcfe\u002F?utm_source=wcfe_free&utm_medium=referral&utm_campaign=try_demo)\" rel=\"nofollow ugc\">Try Demo\u003C\u002Fa> | \u003Ca href=\"https:\u002F\u002Fwww.themehigh.com\u002Fdocs\u002Fdocs-category\u002Fcheckout-field-editor-for-woocommerce\u002F?utm_source=wcfe_free&utm_medium=referral&utm_campaign=pro_doc\" rel=\"nofollow ugc\">Documentation\u003C\u002Fa> | \u003Ca href=\"https:\u002F\u002Fwww.themehigh.com\u002Fproduct\u002Fwoocommerce-checkout-field-editor-pro\u002F?utm_source=wcfe_free&utm_medium=referral&utm_campaign=wcfe_upgrade_link\" rel=\"nofollow ugc\">Get Pro \u003C\u002Fa>\u003C\u002Fp>\n\u003Ch3>🔥 EXPLORE WHAT OUR FREE VERSION OFFERS\u003C\u002Fh3>\n\u003Ch4>✅  ADD FIELDS TYPES TO CHECKOUT PAGE\u003C\u002Fh4>\n\u003Cp>👉 Easily add up to 20 different checkout field types to gather more customer information using \u003Cstrong>Classic checkout\u003C\u002Fstrong>.\u003C\u002Fp>\n\u003Cpre>\u003Ccode>1.  Text\n2.  Number\n3.  Hidden\n4.  Password\n5.  Email\n6.  Phone\n7.  Radio\n8.  Textarea\n9.  Select\n10. Multi Select\n11. Checkbox\n12. Checkbox Group\n13. DateTime Local\n14. Date \n15. Month   \n16. Time\n17. Week\n18. URL\n19. Heading\n20. Paragraph\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>👉 Also the users can add 4 checkout field types to gather more customer information using \u003Cstrong>Block checkout\u003C\u002Fstrong>.\u003C\u002Fp>\n\u003Cpre>\u003Ccode>1.  Text\n2.  Select\n3.  Radio\n4.  Checkbox\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>Users can \u003Cstrong>edit, delete and enable\u002Fdisable these fields\u003C\u002Fstrong>. With the simple drag-and-drop interface, users can also easily \u003Cstrong>reposition fields\u003C\u002Fstrong> to meet their business needs effortlessly.\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\u002F6UXexzGIn-8?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>✅ VALIDATE THE CHECKOUT FIELDS\u003C\u002Fh4>\n\u003Cp>Validate both custom and default checkout fields to prevent incomplete or incorrect submissions, enhancing the user experience and reducing errors during checkout.\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Cstrong>Number\u003C\u002Fstrong>: Restricts input to numerical values\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Email\u003C\u002Fstrong>: Ensures correct email formatting\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Phone\u003C\u002Fstrong>: Validate phone number input\u003C\u002Fli>\n\u003Cli>\u003Cstrong>State & Postcode\u003C\u002Fstrong>: Checks location-based details\u003C\u002Fli>\n\u003Cli>\u003Cstrong>URL\u003C\u002Fstrong>: Allows only properly formatted web addresses\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>✅ MANAGE CUSTOM CHECKOUT FIELD VISIBILITY\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>\n\u003Cp>In \u003Cstrong>Classic checkout\u003C\u002Fstrong> control the visibility of custom checkout fields on the Order Details Page and in emails with a simple checkbox option\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>In \u003Cstrong>Block checkout\u003C\u002Fstrong> control the visibility of custom checkout fields in the Admin emails, customer emails, admin order details & customer order details with a simple checkbox option\u003C\u002Fp>\n\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>✅  PREVENT ADDRESS FIELD OVERRIDES\u003C\u002Fh4>\n\u003Cp>By default, WooCommerce will change the address format based on the countries. Using this plugin, you can prevent the override address field properties and use the values set using the plugin. You can also change the address formats displayed in the addresses in \u003Cstrong>My Account page\u003C\u002Fstrong>, \u003Cstrong>Thank You page\u003C\u002Fstrong> and \u003Cstrong>Transactional Emails\u003C\u002Fstrong>.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>👉Note:\u003C\u002Fstrong> The custom fields created using this plugin can also be included in the addresses using the override feature.\u003C\u002Fp>\n\u003Ch4>✅ ONE-CLICK RESET TO DEFAULT FIELDS\u003C\u002Fh4>\n\u003Cp>Restore the original state and revert to default fields effortlessly with a single click.\u003C\u002Fp>\n\u003Ch4>✅ EASILY TRANSLATE TO OTHER LANGUAGES\u003C\u002Fh4>\n\u003Cp>The Checkout Field Editor plugin supports WPML, Polylang, and Loco Translate, making it simple to translate fields into different languages. For dynamic strings, use the Polylang or WPML plugin.\u003C\u002Fp>\n\u003Ch3>🔥 WHY SWITCH TO PRO?\u003C\u002Fh3>\n\u003Cp>While the free version of \u003Ca href=\"https:\u002F\u002Fflydemos.com\u002Fwcfe\u002F?utm_source=wcfe_free&utm_medium=referral&utm_campaign=try_demo\" rel=\"nofollow ugc\">Checkout Field Editor for WooCommerce\u003C\u002Fa> offers essential features to enhance your checkout pages, the premium version offers full control over your checkout process & easily customize WooCommerce Checkout Fields – Works with Both Classic & Block Checkout!—ensuring a better customer experience and higher revenue such as:\u003C\u002Fp>\n\u003Cp>\u003Cstrong>👉 4 additional field types for more flexibility\u003C\u002Fstrong>\u003Cbr \u002F>\n\u003Cstrong>👉 Add & edit display sections and fields conditionally\u003C\u002Fstrong>\u003Cbr \u002F>\n\u003Cstrong>👉 Custom validations to ensure accurate data\u003C\u002Fstrong>\u003Cbr \u002F>\n\u003Cstrong>👉 Price fields with a variety of price types\u003C\u002Fstrong>\u003Cbr \u002F>\n\u003Cstrong>👉 Change the address display format\u003C\u002Fstrong>\u003Cbr \u002F>\n\u003Cstrong>👉 Developer friendliness with custom hooks\u003C\u002Fstrong>\u003Cbr \u002F>\n\u003Cstrong>👉 Compatibility with third-party plugins for extended functionality\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>\u003Ca href=\"https:\u002F\u002Fwww.themehigh.com\u002Fproduct\u002Fwoocommerce-checkout-field-editor-pro\u002F?utm_source=wcfe_free&utm_medium=referral&utm_campaign=wcfe_upgrade_link\" rel=\"nofollow ugc\">GET FULL ACCESS WITH PREMIUM NOW !\u003C\u002Fa>\u003C\u002Fp>\n\u003Ch4>👉 WPML Compatibility\u003C\u002Fh4>\n\u003Cp>The WooCommerce Checkout Field Editor works smoothly with WPML, allowing you to translate checkout field labels and text into multiple languages for a better multilingual checkout experience.\u003C\u002Fp>\n\u003Ch3>🔥 SEE  OUR  PREMIUM FEATURES\u003C\u002Fh3>\n\u003Cp>\u003Ca href=\"\u002F\u002Fflydemos.com\u002Fwcfe\u002F?utm_source=wcfe_free&utm_medium=referral&utm_campaign=try_demo)\" rel=\"nofollow ugc\">Try Demo\u003C\u002Fa> | \u003Ca href=\"https:\u002F\u002Fwww.themehigh.com\u002Fdocs\u002Fdocs-category\u002Fcheckout-field-editor-for-woocommerce\u002F?utm_source=wcfe_free&utm_medium=referral&utm_campaign=pro_doc\" rel=\"nofollow ugc\">Documentation\u003C\u002Fa> | \u003Ca href=\"https:\u002F\u002Fwww.themehigh.com\u002Fproduct\u002Fwoocommerce-checkout-field-editor-pro\u002F?utm_source=wcfe_free&utm_medium=referral&utm_campaign=wcfe_upgrade_link\" rel=\"nofollow ugc\">Get Pro \u003C\u002Fa>\u003C\u002Fp>\n\u003Ch4>✅  ADD 4 ADDITIONAL FIELDS TYPES TO CHECKOUT PAGE\u003C\u002Fh4>\n\u003Cpre>\u003Ccode>1.  File Upload\n2.  Time Picker\n3.  Date Picker\n4.  Label\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>🆕 \u003Cstrong>👉 Note:\u003C\u002Fstrong> The Pro version  lets you add an extra checkout field type \u003Cstrong>Date Picker\u003C\u002Fstrong> when using Block Checkout.\u003C\u002Fp>\n\u003Ch4>✅ POSITION SECTIONS AT 14 POSITIONS\u003C\u002Fh4>\n\u003Cp>Display sections at 14 different locations, offering greater flexibility in organizing your checkout page.\u003C\u002Fp>\n\u003Cpre>\u003Ccode>1.  Before customer details\n2.  After customer details\n3.  Before billing form\n4.  After billing form\n5.  Before shipping form\n6.  After shipping form\n7.  Before registration form\n8.  After registration form\n9.  Before order notes\n10. After order notes\n11. Before terms & conditions\n12. After terms & conditions\n13. Before submit button\n14. After submit button\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>\u003Cstrong>👉Note:\u003C\u002Fstrong>  Additionally, with our \u003Ca href=\"https:\u002F\u002Fwww.themehigh.com\u002Fproduct\u002Fwoocommerce-multi-step-checkout\u002F\" rel=\"nofollow ugc\">WooCommerce Multistep Checkout plugin\u003C\u002Fa>, you can add custom sections inside a custom step, giving you a total of 15 placement options\u003C\u002Fp>\n\u003Ch4>✅  DISPLAY SECTIONS & FIELDS BASED ON CONDITIONS\u003C\u002Fh4>\n\u003Cp>Show\u002Fhide custom fields only when specific conditions are met.\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Cart contains\u003C\u002Fli>\n\u003Cli>Cart subtotal\u003C\u002Fli>\n\u003Cli>Cart total\u003C\u002Fli>\n\u003Cli>User Roles\u003C\u002Fli>\n\u003Cli>Product\u003C\u002Fli>\n\u003Cli>Product Variations\u003C\u002Fli>\n\u003Cli>Product Category\u003C\u002Fli>\n\u003Cli>Based on other field values\u003C\u002Fli>\n\u003Cli>Based on Shipping Method\u003C\u002Fli>\n\u003Cli>Based on Payment Method\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>✅ CREATE & APPLY CUSTOM VALIDATIONS FOR CHECKOUT FIELDS\u003C\u002Fh4>\n\u003Cp>You can validate checkout fields before order submission. Along with default validation options, you can create custom validation rules to ensure your fields meet specific requirements\u003C\u002Fp>\n\u003Ch4>✅ CREATE CONFIRM FIELD VALIDATION\u003C\u002Fh4>\n\u003Cp>You can create confirm field validators to compare the values of two fields. For example, ensure that the ‘password’ and ‘confirm password’ fields match before proceeding with the checkout\u003C\u002Fp>\n\u003Ch4>✅ ADD PRICE FIELDS WITH MULTIPLE PRICE TYPE\u003C\u002Fh4>\n\u003Cp>Add additional price values to the total by including price fields in the checkout form. You can also set predefined fixed prices using hidden fields in WooCommerce Checkout.\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\n\u003Cp>\u003Cstrong>Fixed Price:\u003C\u002Fstrong> Add a fixed amount to the total price when the field is selected.\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>\u003Cstrong>Custom Price:\u003C\u002Fstrong> Let users enter their own price, ideal for donations or tips.\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>\u003Cstrong>Percentage of Cart Total:\u003C\u002Fstrong> Set the field price as a percentage of the cart total..\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>\u003Cstrong>Percentage of Subtotal:\u003C\u002Fstrong> Add a price based on a percentage of the subtotal.\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>\u003Cstrong>Percentage of Subtotal Excluding Tax :\u003C\u002Fstrong> Add a price based on the percentage subtotal excluding tax.\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>\u003Cstrong>Dynamic Price:\u003C\u002Fstrong> Set price per unit, with the total calculated based on the number of units selected.\u003C\u002Fp>\n\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>✅ EDIT & PERSONALIZE ADDRESS FORMATS\u003C\u002Fh4>\n\u003Cp>With the WooCommerce Checkout Field Editor, you can customize the address format displayed on the My Account page, Thank You page, and transactional emails. Additionally, you can include custom fields created with the plugin in the address format using the override feature.\u003C\u002Fp>\n\u003Ch4>✅ SET REPEAT RULES FOR CUSTOM FIELDS\u003C\u002Fh4>\n\u003Cp>The Pro version of the WooCommerce Checkout Manager plugin allows you to set repeat rules for custom fields and sections based on criteria such as product quantity and cart count only in \u003Cstrong>classic checkout\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Ch4>✅ DEVELOPER FRIENDLY\u003C\u002Fh4>\n\u003Cp>All the custom fields in the Checkout Field Editor are available through hooks. So, the developers can use the checkout fields to extend the functionality of the fields.\u003C\u002Fp>\n\u003Ch4>✅ SUPPORTED PLUGINS & THEMES\u003C\u002Fh4>\n\u003Cp>👉 PLUGINS\u003C\u002Fp>\n\u003Cul>\n\u003Cli>PDF Invoices & Packing Slips for WooCommerce by WP Overnight\u003C\u002Fli>\n\u003Cli>Customer \u002F Order \u002F Coupon Export for WooCommerce by SkyVerge\u003C\u002Fli>\n\u003Cli>Multi-language Support (WPML, Polylang & Loco Translate)\u003C\u002Fli>\n\u003Cli>Zapier Support\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>👉 THEMES\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Astra \u003C\u002Fli>\n\u003Cli>WoodMart \u003C\u002Fli>\n\u003Cli>Divi\u003C\u002Fli>\n\u003Cli>Avada\u003C\u002Fli>\n\u003Cli>Flatsome \u003C\u002Fli>\n\u003Cli>OceanWP \u003C\u002Fli>\n\u003Cli>Storefront  etc..\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>Why ThemeHigh\u003C\u002Fh3>\n\u003Cp>At themehigh, we specialize in providing thoughtful solutions to help you create your store in the easiest and simplest way possible, providing you with a smooth and enjoyable customization experience.\u003C\u002Fp>\n\u003Cp>🏆 2 Million+ Customers\u003Cbr \u002F>\n🏆 Quickest Turn-around Support\u003Cbr \u002F>\n🏆 Most Lightweight Plugins\u003C\u002Fp>\n\u003Ch3>🔥  Explore More\u003C\u002Fh3>\n\u003Cp>If you like the Extra product option, then consider checking out our other WordPress Plugins:\u003C\u002Fp>\n\u003Cp>👉\u003Ca href=\"https:\u002F\u002Fwww.themehigh.com\u002Fproduct\u002Fwoocommerce-extra-product-options\u002F\" rel=\"nofollow ugc\">Extra Product Options For WooCommerce: \u003C\u002Fa>\u003Cbr \u002F>\nThis Custom Product addons plugin lets you quickly add additional fields (19 custom field types) and sections to your WooCommerce Product page.\u003C\u002Fp>\n\u003Cp>👉 \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fproduct-variation-swatches-for-woocommerce\u002F\" rel=\"ugc\">Variation Swatches for WooCommerce:\u003C\u002Fa>\u003Cbr \u002F>\nUsing the WooCommerce Variation Swatches plugin, you can easily convert default WooCommerce product attribute drop-downs into customizable swatches and display customized product variations.\u003C\u002Fp>\n\u003Cp>👉 \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Femail-customizer-for-woocommerce\u002F\" rel=\"ugc\">Email Customizer for WooCommerce | Drag and Drop Email Templates Builder:\u003C\u002Fa>\u003Cbr \u002F>\nEmail Customizer is a plugin that helps you effortlessly customise your WooCommerce transactional emails using its intuitive drag-and-drop builder.\u003C\u002Fp>\n\u003Cp>👉 \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fwoo-multistep-checkout\u002F\" rel=\"ugc\">  MultiStep Checkout for WooCommerce:\u003C\u002Fa>\u003Cbr \u002F>\nThe Multistep checkout plugin helps you split the regular WooCommerce checkout process into multiple steps and create a simpler and more organized checkout experience.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Happy Users of Checkout Manager Plugin\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cblockquote>\n\u003Cp>\u003Cstrong>captainprint (@captainprint)\u003C\u002Fstrong>⭐⭐⭐⭐⭐\u003Cbr \u002F>\n  I had a great experience with this plugin’s customer service. I ran into an issue, and their team was very helpful. They solved my problem efficiently, and I really appreciated their support. Highly recommend!\u003C\u002Fp>\n\u003Cp>\u003Cstrong>giannisdigitup (@giannisdigitup)\u003C\u002Fstrong>⭐⭐⭐⭐\u003Cbr \u002F>\n  Fastest support ever! Not asking stupid things and not blamming other plugins for their problems. Provided me with a valid solution in minutes.\u003Cbr \u002F>\n  Good job guys!!!\u003C\u002Fp>\n\u003Cp>\u003Cstrong>amitaugma (@amitaugma)\u003C\u002Fstrong> ⭐⭐⭐⭐⭐\u003Cbr \u002F>\n  The plugin functionally provides all the necessary tools to successfully build a clean checkout form with conditional and easy to use interface. On top of that, their support is amazing and would take the extra mile to help with any inquires. RECOMMENDED!\u003C\u002Fp>\n\u003Cp>\u003Cstrong>dragoso (@dragoso)\u003C\u002Fstrong> ⭐⭐⭐⭐⭐\u003Cbr \u002F>\n  Support is super speedy and the PRO plugin is totally awesome and works like a charm. Very happy with the purchase! Thank you guys!\u003C\u002Fp>\n\u003Cp>\u003Cstrong>DCM (@bcreativos)\u003C\u002Fstrong> ⭐⭐⭐⭐⭐\u003Cbr \u002F>\n  Great complement in both versions: Free and paid. Excellent support. Thank you very much recommended 100%.\u003C\u002Fp>\n\u003C\u002Fblockquote>\n\u003Ch3>OTHER USEFUL LINKS\u003C\u002Fh3>\n\u003Cp>👉 \u003Ca href=\"https:\u002F\u002Fwww.themehigh.com\u002Fproduct\u002Fwoocommerce-checkout-field-editor-pro\u002F?utm_source=wcfe_free&utm_medium=referral&utm_campaign=wcfe_upgrade_link\" rel=\"nofollow ugc\">VIEW ALL FEATURES\u003C\u002Fa>\u003Cbr \u002F>\n👉 \u003Ca href=\"https:\u002F\u002Fwww.themehigh.com\u002Fdocs\u002Fcategory\u002Fcheckout-field-editor-for-woocommerce\u002F?utm_source=wcfe_free&utm_medium=referral&utm_campaign=pro_doc\" rel=\"nofollow ugc\">GET DOCUMENTATION\u003C\u002Fa>\u003Cbr \u002F>\n👉 \u003Ca href=\"https:\u002F\u002Fwww.themehigh.com\u002Fdocs\u002Fsupport\u002F?utm_source=wcfe_free&utm_medium=referral&utm_campaign=cfe_support\" rel=\"nofollow ugc\">GET THEMEHIGH SUPPORT\u003C\u002Fa>\u003Cbr \u002F>\n👉 \u003Ca href=\"https:\u002F\u002Fwww.facebook.com\u002Fgroups\u002Fthemehigh\u002F\" rel=\"nofollow ugc\">JOIN COMMUNITY\u003C\u002Fa>\u003Cbr \u002F>\n👉 FOLLOW US ON \u003Ca href=\"https:\u002F\u002Fwww.facebook.com\u002FThemeHigh-319611541768603\u002F\" rel=\"nofollow ugc\">Facebook\u003C\u002Fa>, \u003Ca href=\"https:\u002F\u002Fwww.linkedin.com\u002Fcompany\u002Fthemehigh\u002F\" rel=\"nofollow ugc\">LinkedIn\u003C\u002Fa>, \u003Ca href=\"https:\u002F\u002Ftwitter.com\u002Fthemehigh\u002F\" rel=\"nofollow ugc\">X\u003C\u002Fa> , \u003Ca href=\"https:\u002F\u002Fwww.youtube.com\u002Fchannel\u002FUC-_uMXaC_21j1Y2_nGjTyvg\u002F\" rel=\"nofollow ugc\">YouTube\u003C\u002Fa> & \u003Ca href=\"https:\u002F\u002Fwww.reddit.com\u002Fr\u002Fthemehigh\" rel=\"nofollow ugc\">Reddit\u003C\u002Fa>.\u003C\u002Fp>\n","Checkout Field Editor (Checkout Manager) for WooCommerce – The best WooCommerce checkout manager plugin to manage WooCommerce checkout fields.",500000,10140126,98,1048,"2026-03-10T09:16:00.000Z","4.9","5.6",[130,131,132,133,134],"checkout-field-editor","checkout-manager","custom-fields","woocommerce-checkout","woocommerce-checkout-field","https:\u002F\u002Fwww.themehigh.com","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fwoo-checkout-field-editor-pro.2.1.8.zip",93,3,"2026-03-10 21:13:56",{"attackSurface":141,"codeSignals":218,"taintFlows":225,"riskAssessment":226,"analyzedAt":233},{"hooks":142,"ajaxHandlers":214,"restRoutes":215,"shortcodes":216,"cronEvents":217,"entryPointCount":27,"unprotectedCount":27},[143,149,152,155,159,162,165,168,170,173,176,179,182,185,188,191,194,197,199,202,205,208,211],{"type":144,"name":145,"callback":146,"file":147,"line":148},"action","plugins_loaded","anonymous","modules\u002FCore\u002FHooks.php",24,{"type":144,"name":150,"callback":146,"file":147,"line":151},"before_woocommerce_init",38,{"type":144,"name":153,"callback":146,"file":147,"line":154},"init",41,{"type":156,"name":157,"callback":146,"file":147,"line":158},"filter","woocommerce_checkout_fields",44,{"type":156,"name":160,"callback":146,"priority":47,"file":147,"line":161},"woocommerce_billing_fields",45,{"type":156,"name":163,"callback":146,"priority":47,"file":147,"line":164},"woocommerce_shipping_fields",46,{"type":156,"name":166,"callback":146,"priority":47,"file":147,"line":167},"woocommerce_my_account_my_address_formatted_address",49,{"type":156,"name":169,"callback":146,"priority":47,"file":147,"line":47},"woocommerce_order_formatted_billing_address",{"type":156,"name":171,"callback":146,"priority":47,"file":147,"line":172},"woocommerce_order_formatted_shipping_address",51,{"type":156,"name":174,"callback":146,"priority":47,"file":147,"line":175},"woocommerce_localisation_address_formats",52,{"type":156,"name":177,"callback":146,"priority":47,"file":147,"line":178},"woocommerce_formatted_address_replacements",53,{"type":144,"name":180,"callback":146,"file":147,"line":181},"woocommerce_after_checkout_validation",54,{"type":156,"name":183,"callback":146,"priority":11,"file":147,"line":184},"woocommerce_checkout_get_value",55,{"type":156,"name":186,"callback":146,"file":147,"line":187},"woocommerce_customer_meta_fields",58,{"type":156,"name":189,"callback":146,"file":147,"line":190},"woocommerce_admin_billing_fields",59,{"type":156,"name":192,"callback":146,"file":147,"line":193},"woocommerce_admin_shipping_fields",60,{"type":156,"name":195,"callback":146,"priority":11,"file":147,"line":196},"woocommerce_privacy_export_customer_personal_data_props",63,{"type":156,"name":198,"callback":146,"priority":11,"file":147,"line":49},"woocommerce_privacy_export_customer_personal_data_prop_value",{"type":156,"name":200,"callback":146,"priority":11,"file":147,"line":201},"woocommerce_privacy_export_order_personal_data_props",65,{"type":156,"name":203,"callback":146,"priority":11,"file":147,"line":204},"woocommerce_privacy_export_order_personal_data_prop",66,{"type":156,"name":206,"callback":146,"priority":11,"file":147,"line":207},"woocommerce_privacy_erase_customer_personal_data_props",68,{"type":156,"name":209,"callback":146,"priority":11,"file":147,"line":210},"woocommerce_privacy_erase_customer_personal_data_prop",69,{"type":144,"name":212,"callback":146,"file":147,"line":213},"woocommerce_privacy_remove_order_personal_data_meta",70,[],[],[],[],{"dangerousFunctions":219,"sqlUsage":220,"outputEscaping":222,"fileOperations":27,"externalRequests":27,"nonceChecks":27,"capabilityChecks":27,"bundledLibraries":224},[],{"prepared":27,"raw":27,"locations":221},[],{"escaped":14,"rawEcho":27,"locations":223},[],[],[],{"summary":227,"deductions":228},"Based on the provided static analysis, \"f4-woocommerce-simple-checkout-fields\" v1.0.16 exhibits an exceptionally clean security posture. The absence of any identified AJAX handlers, REST API routes, shortcodes, or cron events significantly limits the potential attack surface. Furthermore, the code demonstrates excellent security practices by not utilizing dangerous functions, performing file operations, or making external HTTP requests. All SQL queries are properly prepared, and output is consistently escaped, mitigating common injection and cross-site scripting risks. The lack of any recorded vulnerabilities or CVEs further reinforces its current secure state. \n\nWhile the plugin's current version appears very secure, a notable observation is the complete absence of capability checks and nonce checks. While the limited attack surface might currently render this non-critical, it represents a deviation from best practices for WordPress plugins that interact with user actions or sensitive data. As the plugin evolves or if new entry points are introduced in future versions, the lack of these checks could become a significant security concern, potentially allowing unauthorized actions or data manipulation if any vulnerabilities were to be introduced. Therefore, while the current assessment is highly positive, future development should consider incorporating these standard security mechanisms.",[229,231],{"reason":230,"points":50},"Missing nonce checks",{"reason":232,"points":50},"Missing capability checks","2026-04-16T12:59:10.056Z",{"wat":235,"direct":243},{"assetPaths":236,"generatorPatterns":240,"scriptPaths":241,"versionParams":242},[237,238,239],"\u002Fwp-content\u002Fplugins\u002Ff4-woocommerce-simple-checkout-fields\u002Fmodules\u002FCore\u002Fhelpers.php","\u002Fwp-content\u002Fplugins\u002Ff4-woocommerce-simple-checkout-fields\u002Fmodules\u002FCore\u002FHooks.php","\u002Fwp-content\u002Fplugins\u002Ff4-woocommerce-simple-checkout-fields\u002Fmodules\u002FCore\u002FCore.php",[],[],[],{"cssClasses":244,"htmlComments":245,"htmlAttributes":246,"restEndpoints":247,"jsGlobals":248,"shortcodeOutput":249},[],[],[],[],[],[],{"error":251,"url":252,"statusCode":253,"statusMessage":254,"message":254},true,"http:\u002F\u002Flocalhost\u002Fapi\u002Fplugins\u002Ff4-woocommerce-simple-checkout-fields\u002Fbundle",404,"no bundle for this plugin yet",{"slug":4,"current_version":6,"total_versions":256,"versions":257},17,[258,264,271,278,285,292,299,306,313,320,327,334,341,347,354,361,367],{"version":6,"download_url":26,"svn_tag_url":259,"released_at":28,"has_diff":260,"diff_files_changed":261,"diff_lines":28,"trac_diff_url":262,"vulnerabilities":263,"is_current":251},"https:\u002F\u002Fplugins.svn.wordpress.org\u002Ff4-woocommerce-simple-checkout-fields\u002Ftags\u002F1.0.16\u002F",false,[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Ff4-woocommerce-simple-checkout-fields%2Ftags%2F1.0.15&new_path=%2Ff4-woocommerce-simple-checkout-fields%2Ftags%2F1.0.16",[],{"version":265,"download_url":266,"svn_tag_url":267,"released_at":28,"has_diff":260,"diff_files_changed":268,"diff_lines":28,"trac_diff_url":269,"vulnerabilities":270,"is_current":260},"1.0.15","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Ff4-woocommerce-simple-checkout-fields.1.0.15.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Ff4-woocommerce-simple-checkout-fields\u002Ftags\u002F1.0.15\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Ff4-woocommerce-simple-checkout-fields%2Ftags%2F1.0.14&new_path=%2Ff4-woocommerce-simple-checkout-fields%2Ftags%2F1.0.15",[],{"version":272,"download_url":273,"svn_tag_url":274,"released_at":28,"has_diff":260,"diff_files_changed":275,"diff_lines":28,"trac_diff_url":276,"vulnerabilities":277,"is_current":260},"1.0.14","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Ff4-woocommerce-simple-checkout-fields.1.0.14.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Ff4-woocommerce-simple-checkout-fields\u002Ftags\u002F1.0.14\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Ff4-woocommerce-simple-checkout-fields%2Ftags%2F1.0.13&new_path=%2Ff4-woocommerce-simple-checkout-fields%2Ftags%2F1.0.14",[],{"version":279,"download_url":280,"svn_tag_url":281,"released_at":28,"has_diff":260,"diff_files_changed":282,"diff_lines":28,"trac_diff_url":283,"vulnerabilities":284,"is_current":260},"1.0.13","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Ff4-woocommerce-simple-checkout-fields.1.0.13.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Ff4-woocommerce-simple-checkout-fields\u002Ftags\u002F1.0.13\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Ff4-woocommerce-simple-checkout-fields%2Ftags%2F1.0.12&new_path=%2Ff4-woocommerce-simple-checkout-fields%2Ftags%2F1.0.13",[],{"version":286,"download_url":287,"svn_tag_url":288,"released_at":28,"has_diff":260,"diff_files_changed":289,"diff_lines":28,"trac_diff_url":290,"vulnerabilities":291,"is_current":260},"1.0.12","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Ff4-woocommerce-simple-checkout-fields.1.0.12.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Ff4-woocommerce-simple-checkout-fields\u002Ftags\u002F1.0.12\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Ff4-woocommerce-simple-checkout-fields%2Ftags%2F1.0.11&new_path=%2Ff4-woocommerce-simple-checkout-fields%2Ftags%2F1.0.12",[],{"version":293,"download_url":294,"svn_tag_url":295,"released_at":28,"has_diff":260,"diff_files_changed":296,"diff_lines":28,"trac_diff_url":297,"vulnerabilities":298,"is_current":260},"1.0.11","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Ff4-woocommerce-simple-checkout-fields.1.0.11.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Ff4-woocommerce-simple-checkout-fields\u002Ftags\u002F1.0.11\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Ff4-woocommerce-simple-checkout-fields%2Ftags%2F1.0.10&new_path=%2Ff4-woocommerce-simple-checkout-fields%2Ftags%2F1.0.11",[],{"version":300,"download_url":301,"svn_tag_url":302,"released_at":28,"has_diff":260,"diff_files_changed":303,"diff_lines":28,"trac_diff_url":304,"vulnerabilities":305,"is_current":260},"1.0.10","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Ff4-woocommerce-simple-checkout-fields.1.0.10.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Ff4-woocommerce-simple-checkout-fields\u002Ftags\u002F1.0.10\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Ff4-woocommerce-simple-checkout-fields%2Ftags%2F1.0.9&new_path=%2Ff4-woocommerce-simple-checkout-fields%2Ftags%2F1.0.10",[],{"version":307,"download_url":308,"svn_tag_url":309,"released_at":28,"has_diff":260,"diff_files_changed":310,"diff_lines":28,"trac_diff_url":311,"vulnerabilities":312,"is_current":260},"1.0.9","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Ff4-woocommerce-simple-checkout-fields.1.0.9.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Ff4-woocommerce-simple-checkout-fields\u002Ftags\u002F1.0.9\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Ff4-woocommerce-simple-checkout-fields%2Ftags%2F1.0.8&new_path=%2Ff4-woocommerce-simple-checkout-fields%2Ftags%2F1.0.9",[],{"version":314,"download_url":315,"svn_tag_url":316,"released_at":28,"has_diff":260,"diff_files_changed":317,"diff_lines":28,"trac_diff_url":318,"vulnerabilities":319,"is_current":260},"1.0.8","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Ff4-woocommerce-simple-checkout-fields.1.0.8.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Ff4-woocommerce-simple-checkout-fields\u002Ftags\u002F1.0.8\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Ff4-woocommerce-simple-checkout-fields%2Ftags%2F1.0.7&new_path=%2Ff4-woocommerce-simple-checkout-fields%2Ftags%2F1.0.8",[],{"version":321,"download_url":322,"svn_tag_url":323,"released_at":28,"has_diff":260,"diff_files_changed":324,"diff_lines":28,"trac_diff_url":325,"vulnerabilities":326,"is_current":260},"1.0.7","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Ff4-woocommerce-simple-checkout-fields.1.0.7.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Ff4-woocommerce-simple-checkout-fields\u002Ftags\u002F1.0.7\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Ff4-woocommerce-simple-checkout-fields%2Ftags%2F1.0.6&new_path=%2Ff4-woocommerce-simple-checkout-fields%2Ftags%2F1.0.7",[],{"version":328,"download_url":329,"svn_tag_url":330,"released_at":28,"has_diff":260,"diff_files_changed":331,"diff_lines":28,"trac_diff_url":332,"vulnerabilities":333,"is_current":260},"1.0.6","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Ff4-woocommerce-simple-checkout-fields.1.0.6.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Ff4-woocommerce-simple-checkout-fields\u002Ftags\u002F1.0.6\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Ff4-woocommerce-simple-checkout-fields%2Ftags%2F1.0.5&new_path=%2Ff4-woocommerce-simple-checkout-fields%2Ftags%2F1.0.6",[],{"version":335,"download_url":336,"svn_tag_url":337,"released_at":28,"has_diff":260,"diff_files_changed":338,"diff_lines":28,"trac_diff_url":339,"vulnerabilities":340,"is_current":260},"1.0.5","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Ff4-woocommerce-simple-checkout-fields.1.0.5.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Ff4-woocommerce-simple-checkout-fields\u002Ftags\u002F1.0.5\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Ff4-woocommerce-simple-checkout-fields%2Ftags%2F1.0.4&new_path=%2Ff4-woocommerce-simple-checkout-fields%2Ftags%2F1.0.5",[],{"version":63,"download_url":342,"svn_tag_url":343,"released_at":28,"has_diff":260,"diff_files_changed":344,"diff_lines":28,"trac_diff_url":345,"vulnerabilities":346,"is_current":260},"https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Ff4-woocommerce-simple-checkout-fields.1.0.4.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Ff4-woocommerce-simple-checkout-fields\u002Ftags\u002F1.0.4\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Ff4-woocommerce-simple-checkout-fields%2Ftags%2F1.0.3&new_path=%2Ff4-woocommerce-simple-checkout-fields%2Ftags%2F1.0.4",[],{"version":348,"download_url":349,"svn_tag_url":350,"released_at":28,"has_diff":260,"diff_files_changed":351,"diff_lines":28,"trac_diff_url":352,"vulnerabilities":353,"is_current":260},"1.0.3","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Ff4-woocommerce-simple-checkout-fields.1.0.3.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Ff4-woocommerce-simple-checkout-fields\u002Ftags\u002F1.0.3\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Ff4-woocommerce-simple-checkout-fields%2Ftags%2F1.0.2&new_path=%2Ff4-woocommerce-simple-checkout-fields%2Ftags%2F1.0.3",[],{"version":355,"download_url":356,"svn_tag_url":357,"released_at":28,"has_diff":260,"diff_files_changed":358,"diff_lines":28,"trac_diff_url":359,"vulnerabilities":360,"is_current":260},"1.0.2","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Ff4-woocommerce-simple-checkout-fields.1.0.2.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Ff4-woocommerce-simple-checkout-fields\u002Ftags\u002F1.0.2\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Ff4-woocommerce-simple-checkout-fields%2Ftags%2F1.0.1&new_path=%2Ff4-woocommerce-simple-checkout-fields%2Ftags%2F1.0.2",[],{"version":42,"download_url":362,"svn_tag_url":363,"released_at":28,"has_diff":260,"diff_files_changed":364,"diff_lines":28,"trac_diff_url":365,"vulnerabilities":366,"is_current":260},"https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Ff4-woocommerce-simple-checkout-fields.1.0.1.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Ff4-woocommerce-simple-checkout-fields\u002Ftags\u002F1.0.1\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Ff4-woocommerce-simple-checkout-fields%2Ftags%2F1.0.0&new_path=%2Ff4-woocommerce-simple-checkout-fields%2Ftags%2F1.0.1",[],{"version":82,"download_url":368,"svn_tag_url":369,"released_at":28,"has_diff":260,"diff_files_changed":370,"diff_lines":28,"trac_diff_url":28,"vulnerabilities":371,"is_current":260},"https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Ff4-woocommerce-simple-checkout-fields.1.0.0.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Ff4-woocommerce-simple-checkout-fields\u002Ftags\u002F1.0.0\u002F",[],[]]