Description
This plugin adds new field to Gravity Forms fields editor that you can use to generate random unique (site wide) identifiers like user identifiers, order identifiers, passwords, serial numbers and so on.
You can make it rendered as <INPUT type=”hidden” />, <INPUT type=”text” />, <INPUT type=”number” /> with custom separators as well as custom HTML template.
The plugin allows field value to be separated by common separators like space, comma, dash. etc.
It supports sequence digital identifiers up to 10 digits length.
The plugin is compatible with Graivty Forms Post Update plugin. You can use shortcodes for update existing submissions
without regeneration of identifier (identifier value will be same as on first submission that created new post in WordPress).
[gravityform id=”<FORM_ID>” update=”<POST_ID>”]
or
[gravityform id=”<FORM_ID>” update]
What are differences between Lite version published on WordPress.org and Full Version?
Full version provides additional functionality:
1) Separators can be specified between every X characters of value being generated.
2) Compatibility with Graivty Forms Post Update plugin. You can use shortcodes for update existing submissions
without regeneration of identifier (identifier value will be same as on first submission that created new post in WordPress).
[gravityform id=”
3)
Possibility to customize values being generated using field setting (will be converted to $value using eval PHP function)
or using WordPress filter “mcgfuidgen_custom_value”:
add_filter(“mcgfuidgen_custom_value”, “some_function”,10,4);
function some_function($value, $form_id, $entry_id, $settings){
return @date(“d.m.Y H:i:s”).” – “.$value; // example adds date and time before unique value
}
LIVE DEMO
Click here to login to demo WordPress site
demo
demo2016
Reviews
There are no reviews yet.