[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$fd7goB9LF_mWdPO7PfZ5tejMn3oW-7e3cZmksSwOIhgQ":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":13,"last_updated":14,"tested_up_to":15,"requires_at_least":16,"requires_php":17,"tags":18,"homepage":24,"download_link":25,"security_score":26,"vuln_count":13,"unpatched_count":13,"last_vuln_date":27,"fetched_at":28,"vulnerabilities":29,"developer":30,"crawl_stats":27,"alternatives":37,"analysis":142,"fingerprints":220},"conditional-custom-fields-shortcode","Conditional Custom Fields Shortcode","0.5","ctltwp","https:\u002F\u002Fprofiles.wordpress.org\u002Fctltwp\u002F","\u003Cp>A series of shortcodes for using custom field values in pages or posts (or in sidebar widgets – via \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fextend\u002Fplugins\u002Fwidget-logic\u002F\" rel=\"ugc\">Section Widget\u003C\u002Fa>!), which would then allows you to take store the actual data in custom fields while storing the presentation in the page\u002Fpost body. This transforms WordPress into an awesome CMS. Keep reading for more inspirations.\u003C\u002Fp>\n\u003Ch4>Basic Usage\u003C\u002Fh4>\n\u003Cpre>\u003Ccode>[cf \"custom field name\"]\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>Example:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>Picture of the day:\n\u003Cimg src='[cf \"picture-link\"]' \u002F>\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>This would output something like \u003Ccode>\u003Cimg src='http:\u002F\u002Fthesite.com\u002Fsomething.jpg' \u002F>\u003C\u002Fcode>, assume the post\u002Fpage has the custom field “picture-link” and its value is “http:\u002F\u002Fthesite.com\u002Fsomething.jpg”. That way, you (or your clients!) would never accidentally take out a div when updating your page because you won’t have to touch the page\u002Fpost body anymore!\u003C\u002Fp>\n\u003Ch4>Default Values\u003C\u002Fh4>\n\u003Cpre>\u003Ccode>[cf \"custom field name\" default=\"display this if the CF is undefined\"]\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>Example:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>Contact [cf \"support-email\" default=\"support@mycompany.com\"] if you have questions.\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>support@mycompany.com will be displayed there if the custom field “support-email” is not present in that post\u002Fpage.\u003C\u002Fp>\n\u003Ch4>Simple Template\u003C\u002Fh4>\n\u003Cpre>\u003Ccode>[cf \"custom field name\" default=\"default value\"]...template...[\u002Fcf]\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>Example:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>Price: [cf \"price\" default=\"Pricing information not available yet.\"] USD$%value% [\u002Fcf]\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>If you cannot use \u003Ccode>%value%\u003C\u002Fcode> as your placeholder text for some reason, you can change it by specifying the placeholder attribute.\u003C\u002Fp>\n\u003Cp>Example:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>Price: [cf \"price\" default=\"Pricing information not available yet.\" placeholder=\"__value__\"] USD$__value__ [\u002Fcf]\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Ch4>Multiple Values\u003C\u002Fh4>\n\u003Cp>It’s smart enough to do the right thing. If your post has the following custom fields:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>concert-date: Jan 14th\u003C\u002Fli>\n\u003Cli>concert-date: Jan 28th\u003C\u002Fli>\n\u003Cli>concert-date: Feb 2nd\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>Then \u003Ccode>[cf \"concert-date\"]\u003C\u002Fcode> will output \u003Ccode>Jan 14th,Jan 28th,Feb2nd\u003C\u002Fcode>, exactly what you would expect. You can also optionally provide a separator to replace the default (,).\u003C\u002Fp>\n\u003Cp>Example:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>Come to one of our concerts on the following dates: [cf \"concert-date\" separator=\" \u002F \"]\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>(=> Jan 14th \u002F Jan 28th \u002F Feb 2nd)\u003C\u002Fp>\n\u003Ch4>Sorting\u003C\u002Fh4>\n\u003Cpre>\u003Ccode>[cf \"custom field name\" sort=\"nosort|asc|dsc|random\" type=\"string|int|integer|float|bool|boolean|date|auto\"]\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>You can control how it sort the items (when there’s more than one) using the sort attribute (default is \u003Ccode>nosort\u003C\u002Fcode>). By default, it would compare them using PHP’s comparison operator (i.e. try to cast them into numeric values, or compare them as strings if that failed). However, you can force a type cast by specifying the type attribute (default is \u003Ccode>auto\u003C\u002Fcode>).\u003C\u002Fp>\n\u003Ch4>Display Single Value\u003C\u002Fh4>\n\u003Cp>If display multiple values is not what you want it to do, you can use \u003Ccode>[cf single=\"true\"]\u003C\u002Fcode> to force it to display only the first value. Combining what we have learned so far, you can display a single random value by \u003Ccode>[cf single=\"true\" sort=\"random\"]\u003C\u002Fcode>.\u003C\u002Fp>\n\u003Ch4>Summary\u003C\u002Fh4>\n\u003Cp>Syntax for \u003Ccode>[cf]\u003C\u002Fcode> shortcode: (default values in parenthesis)\u003C\u002Fp>\n\u003Cpre>\u003Ccode>[cf \"field-name\" default=\"\" placeholder=\"%value%\" single=\"(false)|true\" separator=\",\" sort=\"(nosort)|asc|dsc|random\" type=\"string|int|integer|float|bool|boolean|date|(auto)\"](OPTIONAL) template[\u002Fcf]\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Ch4>Conditionals\u003C\u002Fh4>\n\u003Cp>Conditionals tags is what makes this plugin unique. Here is a list of them:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>[if-cf-def \"custom field name\"]\n  Do this when \"custom field name\" is defined for this page\u002Fpost\n[\u002Fif-cf-def]\n\n[if-cf-ndef \"custom field name\"]\n  Do this when \"custom field name\" is NOT defined for this page\u002Fpost\n[\u002Fif-cf-ndef]\n\n[if-cf-eq \"custom field name\" \"value\"]\n  Do this when \"custom field name\" == \"value\"\n[\u002Fif-cf-eq]\n\n[if-cf-neq \"custom field name\" \"value\"]\n  Do this when \"custom field name\" != \"value\"\n[\u002Fif-cf-neq]\n\n[if-cf-lt \"custom field name\" \"value\"]\n  Do this when \"custom field name\" \u003C \"value\"\n[\u002Fif-cf-lt]\n\n[if-cf-gt \"custom field name\" \"value\"]\n  Do this when \"custom field name\" > \"value\"\n[\u002Fif-cf-gt]\n\n[if-cf-let \"custom field name\" \"value\"]\n  Do this when \"custom field name\" \u003C= \"value\"\n[\u002Fif-cf-let]\n\n[if-cf-get \"custom field name\" \"value\"]\n  Do this when \"custom field name\" >= \"value\"\n[\u002Fif-cf-get]\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>More detailed documentations will be published soon. In the mean time, check out the following examples and the comments in the PHP code to get a rough idea.\u003C\u002Fp>\n\u003Ch4>Examples\u003C\u002Fh4>\n\u003Cpre>\u003Ccode>[if-cf-get \"deadline\" \"today\" type=\"date\"]\n    Submit your application \u003Ca href='[cf \"submit-link\"]'>here\u003C\u002Fa>.\n[\u002Fif-cf-get]\n\n[if-cf-lt \"deadline\" \"today\" type=\"date\"]\n    Sorry we regret that we cannot take anymore applications.\n[\u002Fif-cf-lt]\n\n[if-cf-def \"discounted-price\" \"discount-expires\" logic=\"and\"]\n    This product is on discount, get it now for [cf \"discounted-price\" \u002F] [cf \"discount-expires\" default=\"for a limited time\"]before %value%[\u002Fcf]!\n[\u002Fif-cf-def]\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>\u003Cstrong>Please note: It seems that there is a serious bug in WordPress’ shortcode parser that prevents shortcodes from functioning correctly in certain occasions.\u003C\u002Fstrong> The developers are hard at work to get this fixed before the 2.8.3 release. (See \u003Ca href=\"https:\u002F\u002Fcore.trac.wordpress.org\u002Fticket\u002F10082\" rel=\"nofollow ugc\">#10082\u003C\u002Fa>) Therefore, please do not report any parser related bugs for the moment. (e.g. the shortcode is displayed on the actual page)\u003C\u002Fp>\n","Use custom field values in you pages or posts. With conditional supports which enables basic templating with custom fields.",20,3977,0,"2009-07-30T20:47:00.000Z","2.8.2","2.7","",[19,20,21,22,23],"cms","conditional","custom-fields","shortcode","template","#TODO","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fconditional-custom-fields-shortcode.zip",85,null,"2026-03-15T15:16:48.613Z",[],{"slug":7,"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},15,5800,84,34,77,"2026-04-04T16:19:14.189Z",[38,58,76,101,120],{"slug":39,"name":40,"version":41,"author":42,"author_profile":43,"description":44,"short_description":45,"active_installs":11,"downloaded":46,"rating":47,"num_ratings":48,"last_updated":49,"tested_up_to":50,"requires_at_least":51,"requires_php":17,"tags":52,"homepage":56,"download_link":57,"security_score":26,"vuln_count":13,"unpatched_count":13,"last_vuln_date":27,"fetched_at":28},"magic-fields-2-toolkit","Magic Fields 2 Toolkit","1.2.1.2.1","Magenta Cuda","https:\u002F\u002Fprofiles.wordpress.org\u002Fmagenta-cuda\u002F","\u003Cp>\u003Cstrong>This plugin is no longer being actively developed. This means no new features will be added to this plugin.\u003Cbr \u002F>\nMoreover, I no longer use this plugin and will not know of a problem unless a user reports it.\u003Cbr \u002F>\nHowever, I remain absolutely committed to maintaining the existing feature set of this plugin and if a problem is reported I will do my very best to fix it.\u003Cbr \u002F>\nYou can report problems using the \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fsupport\u002Fplugin\u002Fmagic-fields-2-toolkit\" rel=\"ugc\">support page of this plugin\u003C\u002Fa>.\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>This \u003Ca href=\"https:\u002F\u002Fmagicfields17.wordpress.com\u002Fmagic-fields-2-toolkit-0-4-2\u002F\" rel=\"nofollow ugc\">toolkit\u003C\u002Fa> transforms the \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fmagic-fields-2\u002F\" rel=\"ugc\">Magic Fields 2\u003C\u002Fa> plugin into something that can be used by a non programmer to do media oriented CMS web design.\u003Cbr \u002F>\nWith this toolkit you can design your page content using only HTML, CSS and the \u003Ca href=\"http:\u002F\u002Fmagicfields17.wordpress.com\u002Fmagic-fields-2-toolkit-0-4-2\u002F#shortcode\" rel=\"nofollow ugc\">toolkit’s shortcodes\u003C\u002Fa>.\u003Cbr \u002F>\nUsing the \u003Ca href=\"http:\u002F\u002Fmagicfields17.wordpress.com\u002Fmagic-fields-2-toolkit-0-4-2\u002F#macros\" rel=\"nofollow ugc\">toolkit’s content templates\u003C\u002Fa> you can define a reusable template for page contents which can be used to create multiple pages using the page’s custom fields to instantiate the template.\u003Cbr \u002F>\nThis toolkit also simplifies the use of media (images, audio, video and embeds) by providing \u003Ca href=\"https:\u002F\u002Fmagicfields17.wordpress.com\u002Fmagic-fields-2-toolkit-0-4-2\u002F#alt_media\" rel=\"nofollow ugc\">configurable shortcodes\u003C\u002Fa> for generating responsive HTML wrappers for these media elements.\u003C\u002Fp>\n\u003Cp>The current features are:\u003C\u002Fp>\n\u003Ch4>Support for coding HTML templates without the need for PHP programming\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>\u003Ca href=\"http:\u002F\u002Fmagicfields17.wordpress.com\u002Fmagic-fields-2-toolkit-0-4-2\u002F#shortcode\" rel=\"nofollow ugc\">shortcode for showing Magic Fields 2 custom fields and taxonomies\u003C\u002Fa>. In particular, the shortcodes makes it easy to display a table of custom field names and their values.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"http:\u002F\u002Fmagicfields17.wordpress.com\u002Fmagic-fields-2-toolkit-0-4-2\u002F#macros\" rel=\"nofollow ugc\">post content templates for HTML and WordPress shortcodes\u003C\u002Fa> – these templates do not need PHP code.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"http:\u002F\u002Fmagicfields17.wordpress.com\u002Fmagic-fields-2-toolkit-0-4-2\u002F#gallery\" rel=\"nofollow ugc\">gallery shortcode for showing Magic Fields Media Library images\u003C\u002Fa>.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"http:\u002F\u002Fmagicfields17.wordpress.com\u002Fmagic-fields-2-toolkit-0-4-2\u002F#tabs\" rel=\"nofollow ugc\">tabs shortcode for showing mt_template shortcodes in jQuery UI Tabs\u003C\u002Fa>.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Additional custom fields\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>\u003Ca href=\"http:\u002F\u002Fmagicfields17.wordpress.com\u002Fmagic-fields-2-toolkit-0-4-2\u002F#alt_media\" rel=\"nofollow ugc\">fields for WordPress’s video and audio shortcodes\u003C\u002Fa>.\u003C\u002Fli>\n\u003Cli>An \u003Ca href=\"https:\u002F\u002Fmagicfields17.wordpress.com\u002Fmagic-fields-2-toolkit-0-4-2\u002F#alt_image\" rel=\"nofollow ugc\">enhanced image field\u003C\u002Fa> that supports a custom click URL and a mouseover popup.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"http:\u002F\u002Fmagicfields17.wordpress.com\u002Fmagic-fields-2-toolkit-0-4-2\u002F#alt_related\" rel=\"nofollow ugc\">alternative related type field\u003C\u002Fa> which uses multiple selection checkboxes instead of a single selection dropdown.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"http:\u002F\u002Fmagicfields17.wordpress.com\u002Fmagic-fields-2-toolkit-0-4-2\u002F#alt_numeric\" rel=\"nofollow ugc\">numeric field\u003C\u002Fa> with support for measurement units suffix and\u002For currency symbol prefix.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"http:\u002F\u002Fmagicfields17.wordpress.com\u002Fmagic-fields-2-toolkit-0-4-2\u002F#alt_url\" rel=\"nofollow ugc\">URL field\u003C\u002Fa> contains the data for a HTML \u003Ca> element.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"http:\u002F\u002Fmagicfields17.wordpress.com\u002Fmagic-fields-2-toolkit-0-4-2\u002F#alt_table\" rel=\"nofollow ugc\">pseudo field for generating a table of Magic Field names and values\u003C\u002Fa>.\u003C\u002Fli>\n\u003Cli>field for WordPress’s embed shortcode.\u003C\u002Fli>\n\u003Cli>alternative textbox field that allows you to select previously entered data.\u003C\u002Fli>\n\u003Cli>alternative dropdown field that allows you to enter new options directly into the dropdown.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Search widget\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>\u003Ca href=\"http:\u002F\u002Fmagicfields17.wordpress.com\u002Fmagic-fields-2-search-0-4-1\u002F\" rel=\"nofollow ugc\">finds posts by Magic Fields 2 field values.\u003C\u002Fa>\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Miscellaneous enhancements to Magic Fields 2\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>\u003Ca href=\"http:\u002F\u002Fmagicfields17.wordpress.com\u002Fmagic-fields-2-toolkit-0-4-2\u002F#copy\" rel=\"nofollow ugc\">Create a copy of a Magic Fields 2 custom post\u003C\u002Fa> copying all of the Magic Fields’ custom fields, groups and taxonomies.\u003C\u002Fli>\n\u003Cli>Identify and delete unreferenced files in folder files_mf.\u003C\u002Fli>\n\u003Cli>Provides an alternative get_audio function that outputs HTML5 audio elements for iPad and iPhone browsers.\u003C\u002Fli>\n\u003Cli>Provides some Magic Fields 2 utility functions for PHP programmers.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>Please visit the \u003Ca href=\"http:\u002F\u002Fmagicfields17.wordpress.com\u002Fmagic-fields-2-toolkit-0-4-2\u002F\" rel=\"nofollow ugc\">Toolkit’s online documentation\u003C\u002Fa> for more details.\u003Cbr \u002F>\n\u003Cstrong>This plugin works with Magic Fields 2.3 and requires at least PHP 5.4.\u003C\u002Fstrong>\u003C\u002Fp>\n","A toolkit for the Magic Fields 2 plugin for media oriented CMS web design by non programmers.",6955,60,3,"2015-11-15T18:45:00.000Z","4.2.39","3.6",[21,53,54,55],"post-copier","shortcodes","templates","http:\u002F\u002Fmagicfields17.wordpress.com\u002Fmagic-fields-2-toolkit-0-4-2\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fmagic-fields-2-toolkit.1.2.1.2.1.zip",{"slug":59,"name":60,"version":61,"author":62,"author_profile":63,"description":64,"short_description":65,"active_installs":66,"downloaded":67,"rating":13,"num_ratings":13,"last_updated":68,"tested_up_to":69,"requires_at_least":70,"requires_php":17,"tags":71,"homepage":74,"download_link":75,"security_score":26,"vuln_count":13,"unpatched_count":13,"last_vuln_date":27,"fetched_at":28},"supple-forms","Supple Forms","0.1.62","Byron","https:\u002F\u002Fprofiles.wordpress.org\u002Fbennebw\u002F","\u003Cp>Supple Forms makes it easy to create a custom meta box or write panel to enter data while adding or editing posts and pages.  Supple Forms allows you to easily format and insert your data into posts by using shortcodes and HTML snippets.  Following are the features:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Custom write panel or Meta box that displays on the Write Post form\u003C\u002Fli>\n\u003Cli>Fields utilizing textboxes, dropdown lists, radio buttons, checkboxes, textareas, and a jQuery DatePicker\u003C\u002Fli>\n\u003Cli>Allows fields with multiple values\u003C\u002Fli>\n\u003Cli>Options for placement of the custom meta box (after title, after the wysiwyg editor, at the bottom)\u003Cbr \u002F>\nChoose between storing data in a Custom Table or as WordPress’ own Custom Fields….note that multiple value fields will be stored as WP Custom Fields\u003C\u002Fli>\n\u003Cli>Insert field values into posts\u002Fpages with a flexible shortcode api\u003C\u002Fli>\n\u003Cli>Create reuseable HTML (really HTML, Javascript or any valid XHTML) snippets – we call them snips in Supple Forms – that can utilize field values\u003C\u002Fli>\n\u003Cli>Easily insert snips into posts\u002Fpages with a shortcode\u003C\u002Fli>\n\u003Cli>Specify CSS code to be inserted with your HTML snips\u003C\u002Fli>\n\u003Cli>A database view is included to allow you to view your custom table data\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>Usage\u003C\u002Fh3>\n\u003Cp>Using Supple Forms is extremely simple:\u003C\u002Fp>\n\u003Col>\n\u003Cli>After uploading and activating the Supple Forms plugin (see the Installation page), you’re ready to begin building your form\u003C\u002Fli>\n\u003Cli>In the Supple Forms menu, click Form Settings to set form level defaults\u003C\u002Fli>\n\u003Cli>Enter a Form Title.  This will be the title that shows in the form box on the Write Post\u002FPage page\u003C\u002Fli>\n\u003Cli>Choose other form-level defaults such as whether to store data in a Custom Table or in WP Custom Fields\u003C\u002Fli>\n\u003Cli>In the Supple Forms menu, click Add\u002FEdit Fields to add fields to your custom form.  \u003C\u002Fli>\n\u003Cli>Add new fields or Edit existing ones by making the proper selection in the Select field dropdown box\u003C\u002Fli>\n\u003Cli>If you chose Custom Table as the storage option on the Form Settings page, a Generate Table button will be available on the Add\u002FEdit Fields screen.  You will a warning to Generate the table after a field is created or edited until you run the Generate Table option.  However, do not Generate Table until you are done adding\u002Fediting your fields.  It won’t break anything, but it is a best practice to wait.  You can generate the table as often as you want, but waiting until you are done editing fields prevents creating extraneous fields in your database.  Supple Forms will not Delete table fields or custom tables.  We don’t want to risk you losing any data by stray clicks.  So if you end up creating fields that later get changed, you will can delete them through phpMyAdmin or another database management tool.  \u003C\u002Fli>\n\u003Cli>After you’ve added your fields and generated the Your fields will now be available on the Write Post\u002FPage pages\u003C\u002Fli>\n\u003Cli>Saving a post\u002Fpage or publishing a post\u002Fpage saves your custom field data as well.  Custom field data is not saved in the revisions.  It is only linked to the actual Post ID record (not the revision IDs)\u003C\u002Fli>\n\u003Cli>To create HTML snips for inserting into posts\u002Fpages, in the Supple Forms menu, click the HTML Snips Editor\u003C\u002Fli>\n\u003Cli>In the HTML Snips Editor, you can create pre-formatted HTML snippets that include your data.  Simply place your field names in brackets and insert them in your snips.  For example:  \u003Cdiv class=’neatbox’>I live in [city]\u003C\u002Fdiv>\u003C\u002Fli>\n\u003Cli>The name you give your HTML snip will be used in the shortcode that you insert into your posts\u002Fpages.  For example, a snip named address_box would be inserted with this shortcode: [supple snip=’address_box’]\u003C\u002Fli>\n\u003Cli>Finally, place shortcodes like [supple snip=’my_snip’] in your posts or pages.\u003C\u002Fli>\n\u003Cli>For the programmer in you, you have direct access to your custom table from within your template code.  Use the WordPress database object ($wpdb) to perform SQL commands and queries on your data.  Your table name (if using Custom Table) is shown in red on the Form Settings page. Supple Forms utilizes your defined WordPress table prefix ($wpdb->prefix) + the prefix “supple_”.  So a table that you named destinations would normally be in the database as:  wp_supple_destinations   (unless you changed your $wpdb->prefix to something other than the default (wp_))\u003C\u002Fli>\n\u003C\u002Fol>\n","Supple Forms - a CMS plugin for WordPress to create custom write panels, and format and insert values into Posts.",10,16780,"2009-03-08T06:11:00.000Z","2.7.1","2.5",[19,21,72,73,22],"custom-write-panel","forms","http:\u002F\u002Fwww.whypad.com\u002Fposts\u002Fsupple-forms-a-wordpress-cms-plugin\u002F566\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fsupple-forms.0.1.62.zip",{"slug":77,"name":78,"version":79,"author":80,"author_profile":81,"description":82,"short_description":83,"active_installs":84,"downloaded":85,"rating":86,"num_ratings":87,"last_updated":88,"tested_up_to":89,"requires_at_least":90,"requires_php":17,"tags":91,"homepage":95,"download_link":96,"security_score":97,"vuln_count":98,"unpatched_count":99,"last_vuln_date":100,"fetched_at":28},"custom-field-template","Custom Field Template","2.7.7","Hiroaki Miyashita","https:\u002F\u002Fprofiles.wordpress.org\u002Fhiroaki-miyashita\u002F","\u003Cp>The Custom Field Template plugin adds the default custom fields on the Write Post\u002FPage. The template format is almost same as the one of the rc:custom_field_gui plugin. The difference is following.\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwww.wpcft.com\u002F\" rel=\"nofollow ugc\">English Custom Field Template Manual\u003C\u002Fa>\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>We have finally published a manual site for the custom field template plugin. You can also use the custom field refinement search for posts in the admin panel. Please check here.\u003C\u002Fp>\n\u003Cul>\n\u003Cli>You can set any number of the custom field templates and switch the templates when you write\u002Fedit the post\u002Fpage.\u003C\u002Fli>\n\u003Cli>This plugin does not use the ini file for the template but set it in the option page of the plugin.\u003C\u002Fli>\n\u003Cli>Support for TinyMCE in the textarea.\u003C\u002Fli>\n\u003Cli>Support for media buttons in the textarea. – requires at least 2.5.\u003C\u002Fli>\n\u003Cli>Support for multiple fields with the same key.\u003C\u002Fli>\n\u003Cli>Support for hideKey and label options.\u003C\u002Fli>\n\u003Cli>You can see the full option list in the setting page of the plugin.\u003C\u002Fli>\n\u003Cli>You can customize the design of custom field template with css.\u003C\u002Fli>\n\u003Cli>You can replace custom keys by labels.\u003C\u002Fli>\n\u003Cli>You can use wpautop function.\u003C\u002Fli>\n\u003Cli>You can use PHP codes in order to set values. (experimental, \u003Ccode>code = 0\u003C\u002Fcode>)\u003C\u002Fli>\n\u003Cli>You can set an access user level in each field. (\u003Ccode>level = 1\u003C\u002Fcode>)\u003C\u002Fli>\n\u003Cli>Supprt for inserting custom field values into tags automatically. (\u003Ccode>insertTag = true\u003C\u002Fcode>)\u003C\u002Fli>\n\u003Cli>Adds [cft] Shortcode to display the custom field template. (only shows the attributes which have \u003Ccode>output = true\u003C\u002Fcode>)\u003C\u002Fli>\n\u003Cli>Adds template instruction sections.\u003C\u002Fli>\n\u003Cli>Adds the value label option for the case that values are diffrent from viewed values. (\u003Ccode>valueLabel = apples # oranges # bananas\u003C\u002Fcode>)\u003C\u002Fli>\n\u003Cli>Adds the blank option. (\u003Ccode>blank = true\u003C\u002Fcode>)\u003C\u002Fli>\n\u003Cli>Adds the break type. Set CSS of ‘#cft div’. (\u003Ccode>type = break\u003C\u002Fcode>)\u003C\u002Fli>\n\u003Cli>Adds [cft] Shortcode Format.\u003C\u002Fli>\n\u003Cli>Adds the sort option. (\u003Ccode>sort = asc\u003C\u002Fcode>, \u003Ccode>sort = desc\u003C\u002Fcode>, \u003Ccode>sort = order\u003C\u002Fcode>)\u003C\u002Fli>\n\u003Cli>Support for Quick Edit of custom fields. (tinyMCE and mediaButton are not supported yet)\u003C\u002Fli>\n\u003Cli>Support for the custom field search. (only shows the attributes which have \u003Ccode>search = true\u003C\u002Fcode>.)\u003C\u002Fli>\n\u003Cli>Adds [cftsearch] Shortcode Format. (under development)\u003C\u002Fli>\n\u003Cli>Adds PHP codes for the output value. (\u003Ccode>outputCode = 0\u003C\u002Fcode>)\u003C\u002Fli>\n\u003Cli>Adds PHP codes before saving the values. (\u003Ccode>editCode = 0\u003C\u002Fcode>)\u003C\u002Fli>\n\u003Cli>Adds the save functionality.\u003C\u002Fli>\n\u003Cli>Adds the class option. (\u003Ccode>class = text\u003C\u002Fcode>)\u003C\u002Fli>\n\u003Cli>Adds the auto hook of \u003Ccode>the_content()\u003C\u002Fcode>. (experimental)\u003C\u002Fli>\n\u003Cli>You can use the HTML Editor in the textarea. (\u003Ccode>htmlEditor = true\u003C\u002Fcode>)\u003C\u002Fli>\n\u003Cli>Adds the box title replacement option.\u003C\u002Fli>\n\u003Cli>Adds the select option of the post type.\u003C\u002Fli>\n\u003Cli>Adds the value count option.\u003C\u002Fli>\n\u003Cli>Adds the option to use the shortcode in the widhet.\u003C\u002Fli>\n\u003Cli>Adds the attributes of JavaScript Event Handlers. (\u003Ccode>onclick = alert('ok');\u003C\u002Fcode>)\u003C\u002Fli>\n\u003Cli>Adds the Initialize button.\u003C\u002Fli>\n\u003Cli>Adds the attributes of before and after text. (\u003Ccode>before = blah\u003C\u002Fcode>, \u003Ccode>after = blah\u003C\u002Fcode>)\u003C\u002Fli>\n\u003Cli>Adds the export and import functionality.\u003C\u002Fli>\n\u003Cli>Adds the style attribute. (\u003Ccode>style = color:#FF0000;\u003C\u002Fcode>)\u003C\u002Fli>\n\u003Cli>Adds the maxlength attribute. (\u003Ccode>maxlength = 10\u003C\u002Fcode>)\u003C\u002Fli>\n\u003Cli>Adds the attributes of multiple fields. (\u003Ccode>multiple = true\u003C\u002Fcode>, \u003Ccode>startNum = 5\u003C\u002Fcode>, \u003Ccode>endNum = 10\u003C\u002Fcode>, \u003Ccode>multipleButton = true\u003C\u002Fcode>)\u003C\u002Fli>\n\u003Cli>Adds the attributes of the date picker in \u003Ccode>text\u003C\u002Fcode> type. (\u003Ccode>date = true\u003C\u002Fcode>, \u003Ccode>dateFirstDayOfWeek = 0\u003C\u002Fcode>, \u003Ccode>dateFormat = yyyy\u002Fmm\u002Fdd\u003C\u002Fcode>)\u003C\u002Fli>\n\u003Cli>Adds the filter of page template file names (Thanks, Joel Pittet).\u003C\u002Fli>\n\u003Cli>Adds the attribute of \u003Ccode>shortCode\u003C\u002Fcode> in order to output the shortcode filtered values. (\u003Ccode>shortCode = true\u003C\u002Fcode>)\u003C\u002Fli>\n\u003Cli>Adds the attribute of \u003Ccode>outputNone\u003C\u002Fcode> in case there is no data to output. (\u003Ccode>outputNone = No Data\u003C\u002Fcode>)\u003C\u002Fli>\n\u003Cli>Adds the attribute of \u003Ccode>singleList\u003C\u002Fcode> attribute in order to output with \u003Ccode>\u003Cul>\u003Cli>\u003C\u002Fcode> if the value is single. ex) \u003Ccode>singleList = true\u003C\u002Fcode>\u003C\u002Fli>\n\u003Cli>Adds the file upload type. (\u003Ccode>type = file\u003C\u002Fcode>)\u003C\u002Fli>\n\u003Cli>Adds the fieldset type. (\u003Ccode>type = fieldset_open\u003C\u002Fcode>, \u003Ccode>type = fieldset_close\u003C\u002Fcode>)\u003C\u002Fli>\n\u003Cli>Adds the option to deploy the box in each template.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>Localization\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Belorussian (by_BY) – \u003Ca href=\"http:\u002F\u002Fwww.fatcow.com\u002F\" rel=\"nofollow ugc\">Marcis Gasuns\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>Catalan (ca) – \u003Ca href=\"http:\u002F\u002Fandreullos.com\u002F\" rel=\"nofollow ugc\">Andreu Llos\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>Czech (cs_CZ) – \u003Ca href=\"http:\u002F\u002Fwww.webees.cz\u002F\" rel=\"nofollow ugc\">Jakub\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>German (de_DE) – F J Kaiser\u003C\u002Fli>\n\u003Cli>Spanish (es_ES) – \u003Ca href=\"http:\u002F\u002Fwww.darioferrer.com\u002F\" rel=\"nofollow ugc\">Dario Ferrer\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>Farsi (fa_IR) – \u003Ca href=\"http:\u002F\u002Fsabood.ir\u002F\" rel=\"nofollow ugc\">Mehdi Zare\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>French (fr_FR) – Nicolas Lemoine\u003C\u002Fli>\n\u003Cli>Hungarian (hu_HU) – \u003Ca href=\"http:\u002F\u002Fwww.netpok.hu\" rel=\"nofollow ugc\">Balazs Kovacs\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>Indonesian (id_ID) – \u003Ca href=\"http:\u002F\u002Fwww.openscriptsolution.com\u002F\" rel=\"nofollow ugc\">Masino Sinaga\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>Italian (it_IT) – \u003Ca href=\"http:\u002F\u002Fgidibao.net\u002F\" rel=\"nofollow ugc\">Gianni Diurno\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>Japanese (ja) – \u003Ca href=\"https:\u002F\u002Fwpgogo.com\u002F\" rel=\"nofollow ugc\">Hiroaki Miyashita\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>Dutch (nl_NL) – \u003Ca href=\"http:\u002F\u002Fwordpresswebshop.com\u002F\" rel=\"nofollow ugc\">Rene\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>Polish (pl_PL) – \u003Ca href=\"http:\u002F\u002Fwww.difreo.pl\u002F\" rel=\"nofollow ugc\">Difreo\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>Brazilian Portuguese (pt_BR) – \u003Ca href=\"http:\u002F\u002Fwww.gn10.com.br\u002F\" rel=\"nofollow ugc\">Caciano Gabriel\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>Russian (ru_RU) – \u003Ca href=\"http:\u002F\u002Fwww.sonika.ru\u002Fblog\u002F\" rel=\"nofollow ugc\">Sonika\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>Swedish (sv_SE) – \u003Ca href=\"http:\u002F\u002Fwww.fristil.se\u002F\" rel=\"nofollow ugc\">Pontus Carlsson\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>Turkish (tr_TR) – \u003Ca href=\"http:\u002F\u002Framerta.com\u002F\" rel=\"nofollow ugc\">Omer Faruk\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>Ukranian (uk_UA) – \u003Ca href=\"http:\u002F\u002Fwww.portablecomponentsforall.com\" rel=\"nofollow ugc\">Andrew Kovalev\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>Uzbek (uz_UZ) – \u003Ca href=\"http:\u002F\u002Fwww.comfi.com\u002F\" rel=\"nofollow ugc\">Alexandra Bolshova\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>Chinese (zh_CN) – hurri zhu\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>If you have translated into your language, please let me know.\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Ca href=\"http:\u002F\u002Fja.wpcft.com\u002F\" rel=\"nofollow ugc\">Japanese Custom Field Template Manual\u003C\u002Fa>\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>Are you interested in other plugins? See the following site \u003Ca href=\"https:\u002F\u002Fwww.cmswp.jp\u002F\" rel=\"nofollow ugc\">CMS x WP\u003C\u002Fa>.\u003C\u002Fp>\n\u003Ch3>Known Issues \u002F Bugs\u003C\u002Fh3>\n\u003Ch3>Uninstall\u003C\u002Fh3>\n\u003Col>\n\u003Cli>Deactivate the plugin\u003C\u002Fli>\n\u003Cli>That’s it! 🙂\u003C\u002Fli>\n\u003C\u002Fol>\n","The Custom Field Template plugin extends the functionality of custom fields.",30000,1202281,80,24,"2026-01-23T01:47:00.000Z","6.9.4","2.1",[92,21,93,94,23],"cft","fields","meta","https:\u002F\u002Fwww.wpcft.com\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fcustom-field-template.2.7.7.zip",67,12,1,"2025-12-24 00:00:00",{"slug":102,"name":103,"version":104,"author":105,"author_profile":106,"description":107,"short_description":108,"active_installs":109,"downloaded":110,"rating":111,"num_ratings":99,"last_updated":112,"tested_up_to":16,"requires_at_least":113,"requires_php":17,"tags":114,"homepage":118,"download_link":119,"security_score":26,"vuln_count":13,"unpatched_count":13,"last_vuln_date":27,"fetched_at":28},"custom-shortcodes","Custom Shortcodes","1.0","marapper","https:\u002F\u002Fprofiles.wordpress.org\u002Fmarapper\u002F","\u003Cp>Manage \u003Cstrong>custom fields\u003C\u002Fstrong> using the insert \u003Cstrong>shortcodes\u003C\u002Fstrong> [custom name=”\u003Cem>field-name\u003C\u002Fem>” value=”\u003Cem>field-value\u003C\u002Fem>“] or HTML \u003Cstrong>conditional comments\u003C\u002Fstrong> \u003C!–custom name=”\u003Cem>field-name\u003C\u002Fem>” value=”\u003Cem>field-value\u003C\u002Fem>“–> in text of post. It’s a hook for desktop blog clients, which don’t support customfields natively.\u003C\u002Fp>\n\u003Cp>Простой хак Вордпресса, позволяющий управлять \u003Cstrong>произвольными полями\u003C\u002Fstrong> из любого внешнего клиента или при отправке через почту с помощью \u003Cstrong>шорткодов\u003C\u002Fstrong> [custom name=”\u003Cem>имя-произвольного-поля\u003C\u002Fem>” value=”\u003Cem>значение\u003C\u002Fem>“] или \u003Cstrong>условных комментариев\u003C\u002Fstrong> \u003C!–custom name=”\u003Cem>имя-произвольного-поля\u003C\u002Fem>” value=”\u003Cem>значение\u003C\u002Fem>“–> прямо в тексте поста.\u003C\u002Fp>\n","Manage custom fields using the insert shortcodes or HTML comment in text of post.",6000,5599,100,"2009-04-04T11:51:00.000Z","2.0.2",[115,21,116,54,117],"custom","post","text","http:\u002F\u002Fiskariot.ru\u002Fwordpress\u002Fremix\u002F#custom-short","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fcustom-shortcodes.1.0.zip",{"slug":121,"name":122,"version":123,"author":124,"author_profile":125,"description":126,"short_description":127,"active_installs":128,"downloaded":129,"rating":13,"num_ratings":13,"last_updated":130,"tested_up_to":89,"requires_at_least":131,"requires_php":132,"tags":133,"homepage":138,"download_link":139,"security_score":140,"vuln_count":48,"unpatched_count":99,"last_vuln_date":141,"fetched_at":28},"cubewp-forms","CubeWP Forms","1.1.10","Imran Tauqeer","https:\u002F\u002Fprofiles.wordpress.org\u002Fcubewp1211\u002F","\u003Cp>CubeWP Forms is a 100% free extension for the \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fcubewp-framework\" rel=\"ugc\">CubeWP Framework\u003C\u002Fa> (also available for FREE on WordPress.org) that lets you easily build simple to very advanced forms including contact forms, lead forms, feedback forms, appointment request forms, and newsletter subscription forms (MailChimp integration) for your website using a drag-and-drop form builder and manage all the leads from WordPress backend.\u003C\u002Fp>\n\u003Ch3>🎁 NEW BONUS! 10+ KICKSTARTER FORM TEMPLATES IN DOZEN STYLES FOR FREE!\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>Simple Contact Form\u003C\u002Fli>\n\u003Cli>Extended Contact Form\u003C\u002Fli>\n\u003Cli>Creative Contact Form\u003C\u002Fli>\n\u003Cli>Corporate Contact Form\u003C\u002Fli>\n\u003Cli>Contact Form with Subject Field\u003C\u002Fli>\n\u003Cli>Contact Form with Subject Drop-Down\u003C\u002Fli>\n\u003Cli>Contact Form with Newsletter subscription\u003C\u002Fli>\n\u003Cli>Contact Form with How Did You Learn About Us\u003C\u002Fli>\n\u003Cli>Contact Form with Accept Terms\u003C\u002Fli>\n\u003Cli>Contact Form with Full Address\u003C\u002Fli>\n\u003Cli>Appointment Request Form\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>⭐ To Try Form Templates & Styles ➡️\u003C\u002Fh3>\n\u003Cp>\u003Ca href=\"https:\u002F\u002Fcubewp.com\u002Fextensions\u002Fcubewp-forms-templates\" rel=\"nofollow ugc\">CLICK HERE\u003C\u002Fa>\u003C\u002Fp>\n\u003Cp>In addition to serving as a simple contact or lead form, CubeWP Forms can also be used for more advanced purposes.\u003C\u002Fp>\n\u003Cp>To create a powerful form you need access to advanced custom fields. CubeWP Forms includes 25 custom fields out-of-the box.\u003C\u002Fp>\n\u003Cp>Many of the custom fields included are only available in paid add-ons otherwise. See the list of all custom fields below.\u003C\u002Fp>\n\u003Cp>Some of the key features that make it a powerful form builder include the ability for administrators to view and manage lead messages from the backend, as well as the option to configure forms to send instant notification to specific email addresses.\u003C\u002Fp>\n\u003Cp>With CubeWP Forms, you can quickly and easily create forms that meet your specific needs and help you capture valuable lead information or feedback from your visitors.\u003C\u002Fp>\n\u003Cp>With our premium add-on, \u003Ca href=\"https:\u002F\u002Fcubewp.com\u002Fcubewp-frontend-pro\u002F\" rel=\"nofollow ugc\">CubeWP Frontend Pro\u003C\u002Fa>, you can also allow users (post authors, listing owners, etc.) to view and manage leads from the frontend user dashboard. This feature provides an easy and convenient way for users to access and interact with leads on your site.\u003C\u002Fp>\n\u003Cp>If you want to enable this functionality, be sure to check out \u003Ca href=\"https:\u002F\u002Fcubewp.com\u002Fcubewp-frontend-pro\u002F\" rel=\"nofollow ugc\">CubeWP Frontend Pro\u003C\u002Fa>.\u003C\u002Fp>\n\u003Ch3>Core Features Includes\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>Unlimited Forms\u003C\u002Fli>\n\u003Cli>Unlimited form submissions\u003C\u002Fli>\n\u003Cli>Drag and Drop Form Builder\u003C\u002Fli>\n\u003Cli>Drop anywhere with shortcode\u003C\u002Fli>\n\u003Cli>Leads Management (Backend) – aka Entry Management\u003C\u002Fli>\n\u003Cli>Leads Management (Frontend User-dashboard) – requires \u003Ca href=\"https:\u002F\u002Fcubewp.com\u002Fcubewp-frontend-pro\u002F\" rel=\"nofollow ugc\">CubeWP Frontend Pro\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>File Uploads\u003C\u002Fli>\n\u003Cli>Instant Notifications (multiple emails)\u003C\u002Fli>\n\u003Cli>Restrict form submission only for logged-in users\u003C\u002Fli>\n\u003Cli>Spam Protection – reCAPTCHA (Google)\u003C\u002Fli>\n\u003Cli>Field Validation \u003C\u002Fli>\n\u003Cli>Set Character Limit\u003C\u002Fli>\n\u003Cli>Smart Conditional Logic\u003C\u002Fli>\n\u003Cli>Mobile Friendly – 100% Responsive\u003C\u002Fli>\n\u003Cli>25 Advanced Custom Fields\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>List of all 25 Custom Fields Types Available\u003C\u002Fh3>\n\u003Col>\n\u003Cli>\n\u003Cp>Text\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Numbers\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>URL\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Email\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Textarea\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>WYSIWYG editor\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Image\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Gallery\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>File\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>oEmbed\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Drop-down\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Checkboxes\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Radio buttons\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Switch\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Range\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Color Picker\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Date\u002Ftime picker\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Date picker\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Time picker\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Post\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Taxonomy\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>User\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Repeatable Field Set\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Password\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Google Address\u003C\u002Fp>\n\u003C\u002Fli>\n\u003C\u002Fol>\n\u003Ch3>How to add the form anywhere?\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>Copy paste the unique shortcode generated for each form.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>Can I add this to any page or post type?\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>Yes you can.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>How to view and manage leads from frontend?\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>You will need to purchase \u003Ca href=\"https:\u002F\u002Fcubewp.com\u002Fcubewp-frontend-pro\u002F\" rel=\"nofollow ugc\">CubeWP Frontend Pro\u003C\u002Fa> and create a user-dashboard.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>Can I use it to capture email subscriptions for newsletter?\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>Yes CubeWP Forms is integrated with Mailchimp. We plan to add alternative integrations in the future.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>⭐ OTHER FREE EXTENSION FOR CUBEWP FRAMEWORK ⭐\u003C\u002Fh3>\n\u003Cp>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fcubewp-wallet\" rel=\"ugc\">CubeWP Wallet\u003C\u002Fa>\u003C\u002Fp>\n\u003Cp>CubeWP Wallet is a feature-rich plugin designed primarily to integrate a wallet system into a WordPress themes or websites. Easily enable transactions to be added to a user’s wallet, provide withdrawal functionality, and even implement commission charges.\u003C\u002Fp>\n\u003Cp>\u003Ca href=\"https:\u002F\u002Fcubewp.com\u002Fdownloads\u002Fcubewp-addon-social-login\" rel=\"nofollow ugc\">CubeWP Social Login\u003C\u002Fa>\u003C\u002Fp>\n\u003Cp>CubeWP Social Login is a powerful add-on for the CubeWP Framework that allows users to sign in and sign up using their Facebook and Google accounts. It also provides the option to connect existing accounts with these two popular social media platforms.\u003C\u002Fp>\n\u003Cp>\u003Ca href=\"https:\u002F\u002Fcubewp.com\u002Fdownloads\u002Fcubewp-addon-bulk-import\" rel=\"nofollow ugc\">CubeWP Bulk Import\u003C\u002Fa>\u003C\u002Fp>\n\u003Cp>CubeWP Bulk Import Plugin is a user-friendly tool that simplifies content import in WordPress. It seamlessly handles large-scale imports of posts, pages, custom post types, taxonomies, and media files.\u003C\u002Fp>\n\u003Cp>\u003Ca href=\"https:\u002F\u002Fcubewp.com\u002Fdownloads\u002Fcubewp-addon-post-claim\" rel=\"nofollow ugc\">CubeWP Post Claim\u003C\u002Fa>\u003C\u002Fp>\n\u003Cp>CubeWP Claim is a versatile plugin designed to add a post claim feature to your dynamic WordPress website. You can offer users the ability to claim ownership of posts, ensuring content integrity.\u003C\u002Fp>\n\u003Ch3>⭐ PREMIUM EXTENSIONS FOR CUBEWP FRAMEWORK ⭐\u003C\u002Fh3>\n\u003Cp>\u003Cstrong>Do you want admin access to try our premium extensions?\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>\u003Ca href=\"https:\u002F\u002Fdemowp.io\u002Fget-demo.php?demo=CubeWP\" rel=\"nofollow ugc\">Click-here to create an instant sandbox\u003C\u002Fa> – Powered by DemoWP.io\u003C\u002Fp>\n\u003Cp>\u003Ca href=\"https:\u002F\u002Fcubewp.com\u002Fcubewp-frontend-pro\" rel=\"nofollow ugc\">CubeWP Frontend Pro\u003C\u002Fa>\u003C\u002Fp>\n\u003Cp>With CubeWP Frontend Pro, streamline your workflow by replacing multiple plugins and manual coding. This robust extension empowers you to create custom frontend forms, layouts, and dynamic content effortlessly.\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Advanced Search Builder: Enhance your search capabilities by adding various custom fields.\u003C\u002Fli>\n\u003Cli>Advanced Filter Builder: Expand filtering options with all available custom fields.\u003C\u002Fli>\n\u003Cli>User Signup Form Builder: Craft tailored registration forms for different user roles.\u003C\u002Fli>\n\u003Cli>User Profile Form Builder: Create personalized profile forms for diverse user roles.\u003C\u002Fli>\n\u003Cli>Post Types Form Builder: Develop front-end submission forms for any post type.\u003C\u002Fli>\n\u003Cli>Single-post Template Editor: Customize post details with a drag-and-drop layout builder.\u003C\u002Fli>\n\u003Cli>User Dashboard Builder: Easily construct custom user dashboards based on roles.\u003C\u002Fli>\n\u003Cli>Post Loop Generator: Gain full control over post grids for unique content presentation (HTML\u002FCSS skills required).\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>\u003Ca href=\"https:\u002F\u002Fcubewp.com\u002Fcubewp-payments\" rel=\"nofollow ugc\">CubeWP Payments\u003C\u002Fa>\u003C\u002Fp>\n\u003Cp>Enable monetization via different revenue channels with WooCommerce once you have built your website.\u003C\u002Fp>\n\u003Cp>\u003Ca href=\"https:\u002F\u002Fcubewp.com\u002Fcubewp-inbox\" rel=\"nofollow ugc\">CubeWP Inbox\u003C\u002Fa>\u003C\u002Fp>\n\u003Cp>The CubeWP Inbox Pro add-on lets vendors respond to messages from their website without having to leave the site.\u003C\u002Fp>\n\u003Cp>\u003Ca href=\"https:\u002F\u002Fcubewp.com\u002Fdownloads\u002Fcubewp-addon-reviews\" rel=\"nofollow ugc\">CubeWP Reviews\u003C\u002Fa>\u003C\u002Fp>\n\u003Cp>This extension enables users to share their thoughts, opinions, and experiences by posting reviews and multi-criteria ratings.\u003C\u002Fp>\n\u003Cp>\u003Ca href=\"https:\u002F\u002Fcubewp.com\u002Fdownloads\u002Fcubewp-addon-booster\" rel=\"nofollow ugc\">CubeWP Booster\u003C\u002Fa>\u003C\u002Fp>\n\u003Cp>The Ads Booster feature within CubeWP Booster allows users to run targeted ad campaigns to boost their posts on a Pay-per-Click (ppc) or Pay-per-Day (PPD) basis.\u003C\u002Fp>\n\u003Cp>\u003Ca href=\"https:\u002F\u002Fcubewp.com\u002Fdownloads\u002Fcubewp-addon-booking\" rel=\"nofollow ugc\">CubeWP Booking\u003C\u002Fa>\u003C\u002Fp>\n\u003Cp>CubeWP Booking is a 3-in-1 Booking plugin, providing all necessary booking features including free or paid booking needs or build more advanced marketplaces.\u003C\u002Fp>\n\u003Ch3>⭐ CUBEWP PREMIUM THEMES ⭐\u003C\u002Fh3>\n\u003Cp>To kickstart an advanced website or web-app you can get all access to our premium themes library.\u003C\u002Fp>\n\u003Cp>\u003Ca href=\"https:\u002F\u002Fcubewp.com\u002Fdownloads\u002Fstreetwise\" rel=\"nofollow ugc\">Streetwise\u003C\u002Fa>\u003C\u002Fp>\n\u003Cp>Streetwise is a WordPress Real Estate theme developed with the CubeWP Framework. It draws inspiration from top real-world real-estate websites.\u003C\u002Fp>\n\u003Cp>\u003Ca href=\"https:\u002F\u002Fcubewp.com\u002Fdownloads\u002Fyellowbooks\" rel=\"nofollow ugc\">YellowBooks\u003C\u002Fa>\u003C\u002Fp>\n\u003Cp>YellowBooks is a WordPress directory theme developed with the CubeWP Framework. It draws inspiration from top real-world directory websites.\u003C\u002Fp>\n\u003Cp>\u003Ca href=\"https:\u002F\u002Fcubewp.com\u002Fdownloads\u002Fclx\" rel=\"nofollow ugc\">CLX\u003C\u002Fa>\u003C\u002Fp>\n\u003Cp>CLX is a WordPress Classified Ads theme developed with the CubeWP Framework. It draws inspiration from top real-world classified ads websites.\u003C\u002Fp>\n\u003Cp>\u003Ca href=\"https:\u002F\u002Fcubewp.com\u002Fdownloads\u002Fdubified\" rel=\"nofollow ugc\">Dubified\u003C\u002Fa>\u003C\u002Fp>\n\u003Cp>Dubified is a WordPress Classified Ads theme developed with the CubeWP Framework. It draws inspiration from top real-world classified ads websites.\u003C\u002Fp>\n","CubeWP Forms is a 100% free drag-and-drop builder for creating contact forms, lead gen forms, appointment request forms, and newsletter signup forms.",4000,70686,"2026-01-08T07:05:00.000Z","5.0","7.0",[134,135,21,136,137],"conditional-fields","contact-form","lead-form","leads-management","https:\u002F\u002Fcubewp.com\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fcubewp-forms.1.1.10.zip",73,"2025-06-12 00:00:00",{"attackSurface":143,"codeSignals":197,"taintFlows":213,"riskAssessment":214,"analyzedAt":219},{"hooks":144,"ajaxHandlers":156,"restRoutes":157,"shortcodes":158,"cronEvents":195,"entryPointCount":196,"unprotectedCount":13},[145,151],{"type":146,"name":147,"callback":148,"priority":98,"file":149,"line":150},"filter","the_content","wpautop","conditional-custom-fields-shortcode.php",291,{"type":152,"name":153,"callback":154,"file":149,"line":155},"action","init","olt_ccfs_init",294,[],[],[159,163,167,171,175,179,183,187,191],{"tag":160,"callback":161,"file":149,"line":162},"cf","olt_cf_sc_handler",278,{"tag":164,"callback":165,"file":149,"line":166},"if-cf-def","olt_cf_def_sc_handler",280,{"tag":168,"callback":169,"file":149,"line":170},"if-cf-ndef","olt_cf_ndef_sc_handler",281,{"tag":172,"callback":173,"file":149,"line":174},"if-cf-eq","olt_cf_eq_sc_handler",282,{"tag":176,"callback":177,"file":149,"line":178},"if-cf-neq","olt_cf_neq_sc_handler",283,{"tag":180,"callback":181,"file":149,"line":182},"if-cf-lt","olt_cf_lt_sc_handler",284,{"tag":184,"callback":185,"file":149,"line":186},"if-cf-gt","olt_cf_gt_sc_handler",285,{"tag":188,"callback":189,"file":149,"line":190},"if-cf-let","olt_cf_let_sc_handler",286,{"tag":192,"callback":193,"file":149,"line":194},"if-cf-get","olt_cf_get_sc_handler",287,[],9,{"dangerousFunctions":198,"sqlUsage":207,"outputEscaping":209,"fileOperations":13,"externalRequests":13,"nonceChecks":13,"capabilityChecks":13,"bundledLibraries":212},[199,204],{"fn":200,"file":201,"line":202,"context":203},"create_function","conditional-custom-fields-functions.php",111,"usort($cf, create_function('$a,$b','return strcasecmp($a,$b);'));",{"fn":200,"file":201,"line":205,"context":206},115,"usort($cf, create_function('$a,$b',",{"prepared":13,"raw":13,"locations":208},[],{"escaped":210,"rawEcho":13,"locations":211},4,[],[],[],{"summary":215,"deductions":216},"The \"conditional-custom-fields-shortcode\" plugin v0.5 exhibits a generally strong security posture due to its adherence to secure coding practices. The absence of raw SQL queries, proper output escaping, and lack of file operations or external HTTP requests are significant strengths. Furthermore, the absence of any known historical vulnerabilities or CVEs suggests a history of stable and secure development.  However, the presence of two 'create_function' calls is a notable concern. This function is deprecated and can be a source of potential security risks if not used with extreme caution, as it allows for the creation of functions from strings, which can be susceptible to code injection if the input string is not strictly sanitized.  Despite this, the overall low risk is further reinforced by the limited attack surface comprised solely of shortcodes and the lack of any taint analysis findings.",[217],{"reason":218,"points":66},"Use of deprecated create_function","2026-03-16T23:00:38.675Z",{"wat":221,"direct":227},{"assetPaths":222,"generatorPatterns":223,"scriptPaths":224,"versionParams":226},[],[],[225],"\u002Fwp-content\u002Fplugins\u002Fconditional-custom-fields-shortcode\u002Fconditional-custom-fields-functions.php",[],{"cssClasses":228,"htmlComments":229,"htmlAttributes":230,"restEndpoints":231,"jsGlobals":232,"shortcodeOutput":233},[],[],[],[],[],[234,235,236,237,238,239,240,241,242],"[cf","[if-cf-def","[if-cf-ndef","[if-cf-eq","[if-cf-neq","[if-cf-lt","[if-cf-gt","[if-cf-let","[if-cf-get"]