I make use of Flutter (Fresh Page) plugin quite a bit. I like that Gravity Forms can add data directly into the custom fields created by Flutter, however one thing that's missing is the ability to link the newly created post (by Gravity) to the write panel created by Flutter.
What's happening now is that the post is being created & the fields populated, but this new post is not displaying in my custom write panel and the data thus isn't being called using the standard <? echo get('variable'); ?>
command.
Am I making sense? :P
There's a hidden field in the flutter custom write panel, that attaches a post to the write panel:
<input type='hidden' name="rc-custom-write-panel-verify-key" id="rc-custom-write-panel-verify-key" value="870862ff5f" />
This could be correctly generated using wp_create_nonce();
like so:
<input type="hidden" name="rc-custom-write-panel-verify-key" id="rc-custom-write-panel-verify-key" value="<?php echo wp_create_nonce('rc-custom-write-panel')?>" />
Does anybody know how this could be integrated so that the end result is a post created by a user with Gravity Forms is attached to a write panel in Flutter...
Here's hoping! :)
Thanks