Hello
After editing the entry as an admin in backend , code will be empty! gravity no conflict mode is off!
Hi, Unique ID not generating, please how can i fix this, whenever the form field is sent to the admin, it doesnt generate a unique ID
]]>I’m trying to use the plugin to create a unique serial number on form submission. From within Gravity Forms, the ‘Unique ID’ field does not seem to be saving settings. I set the desired increment and starting serial, then click the Update button. But when I go back to the field settings everything is back to default. I tried this on my site and also from the demo site and modcoding.com (‘Settings not Saving?’ form) with the same failure. No changes to settings are saved after pressing the Update button.
Thanks for your help!
]]>I love this plugin alot and have been using it, but the problem am having with it s the developers lack of updates, please try ad be updating the plugin as this has lots of security issues if not being updated.
]]>When I edit a entry, the code field empty itself.
Already turned off NO CONFLICT MODE
I don’t seem to be able to change the Sequence values to 1. It keeps changing it to 100000. Any ideas why this is please?
]]>Hi, great plugin but when i drag the UniqueID field its ok i can change Characters type, length and its ok, but when i open the form the UniqueID is not visible i set on No Conflict Mode to Off in Gravity Forms Settings.
I use Gravity Forms 2.2.1.4 and WP 4.9.5
]]>Hi @modcodingcom,
I’m the developer of Smart Slider 3. We use ob_start function like you do in your plugin. I started to collection usage of output buffering examples in different plugins and it seems like you use different method. Here you can check my collection: https://github.com/nextend/wp-ob-plugins-themes/blob/master/README.md
As you can see all of the popular plugins use template_redirect action to start their output buffers. Using template_include instead will result plugin conflict with other plugins.
Your original code:
function mcgfuidgen_head(){
@ob_start();
}
function mcgfuidgen_footer(){
$s = @ob_get_clean();
$form_id = 0;
if ($ar = mcgfuidgen_GetStringBetweenTags("gform_fields_","'",$s))
$form_id = (int)@$ar[0];
if ($form_id > 0) {
// some form rendered
$GLOBALS['MCGF_FRONT_INIT'] = 1;
// render required scripts for front view of submission pages of the form
mcgfuidgen_post_paging(array("id" => $form_id),1,1);
}
echo $s;
}
add_action('init', 'mcgfuidgen_head', 0);
add_action('wp_footer', 'mcgfuidgen_footer', PHP_INT_MAX);
You just need to use template_redirect
action with high priority instead of the init action, so the suggested code:
function mcgfuidgen_head(){
@ob_start();
}
function mcgfuidgen_footer(){
$s = @ob_get_clean();
$form_id = 0;
if ($ar = mcgfuidgen_GetStringBetweenTags("gform_fields_","'",$s))
$form_id = (int)@$ar[0];
if ($form_id > 0) {
// some form rendered
$GLOBALS['MCGF_FRONT_INIT'] = 1;
// render required scripts for front view of submission pages of the form
mcgfuidgen_post_paging(array("id" => $form_id),1,1);
}
echo $s;
}
add_action('template_redirect', 'mcgfuidgen_head', PHP_INT_MAX );
add_action('wp_footer', 'mcgfuidgen_footer', PHP_INT_MAX);
]]>
Hi There I get the following PHP Error:
Undefined index: MCGF_FRONT_INIT
wp-content/plugins/gf-mc-unique-id-generator-field/gf_mc_unique_id_generator_field.php:435
wp-settings.php
wp-settings.php:305
Hi,
I’m having a problem when editing an entry for a form where this field us being used. When I try to edit a form the field is empty.
Here’s a screenshot: https://cl.ly/0I472j1Z1Z3b
]]>so here is the dilemma. We want to use this plugin to assign a new ID for each member. He don’t want to assign numbers to existing members. We have found a way around this. However here is the big issue.
Every-time the page refreshes, the number increments. We want to make it so you have to submit the form to assign the new number. Is this possible? Otherwise the number changes simply by opening the page.
we use sticky forms list, and we use the duplicate function. We would LOVE it if every-time we duplicate the form, it does not generate a new ID
thoughts?
]]>Hello,
I have a unique ID field set up visibly on the first page of a multi-page form. As the user fills out the subsequent fields and clicks ‘next’ to get to the following page, the unique ID increments by one. So, on a 3-page form, if the unique ID reads 001 on the first page, by the time the user reaches the submit button, the ID has incremented twice to read 003.
I need the end-user to be able to copy and reference the unique ID from the first page without it changing on them before submit. Is there an easy fix?
]]>When I add the field to my form and then click on it to get into the options I see a “General” tab but nothing beyond that.
Supposing there’s a fix for the above problem; I want to use this to produce a sequential 6 number ID per form entry for receipt purposes. Does this do what I need it to?
Thank you.
– Brandon
Hello;
I installed unique ID with Gravity form and everything works fine.
My only question is:
How do I configure Unique ID to have successive invoice numbers?
It may be that figures like:
Invoice number:
ABC000001
following
ABC000002
Thank you in advance.
]]>The id generator seems to be stuck on the same number,
When looking at the field in the setting, i am not able to expand / fully view the field formula / settings anymore.
]]>I tried this plugin but it doesn’t show options to edit field name or any configuration options eg. admin field etc.
Thanks
Hi,
I think since the last update the problem is there.
After saving once the formular, it don’t create a new unique ID anymore.
After i reinstall the plugin it’s working fine, every reload of the form creates a unique id, but after sending one time not anymore.
I can see the old saved id in the form field.
It drives me nuts ?? … I need it urgently
:-)) Thanks for your support
Thomas
]]>I’m seeing the following error on the frontend when WP_DEBUG is enabled:
WordPress database error: [You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1]
SELECT id_int, id_str FROM <code>f3tbg_mcgfuidgen_data</code> WHERE post_id =
]]>