mjhead
Forum Replies Created
-
Hi! Sorry for the delay. Just checked your page, can’t find required code here. The best for your case will be add required JS code into this file – https://www.bakingwiththeory.com/wp-content/plugins/jet-forms-use-field-values-master/assets/js/use-field-values.js, something like this – https://prntscr.com/1sxixvr
Forum: Plugins
In reply to: [JetFormBuilder — Dynamic Blocks Form Builder] Call a custom hookHi! Yes, really good case! You can do this by using only
Insert Post
andCall custom hook
actions.At first you need to setup insert post action with settings you need
Than add Call a hook action and callback for this hook. Redirect is beter to setup right inside in the hook callback. Here is an example of action setup – https://prntscr.com/1ssud7m and here is an example of callback code with sample API request and redirect – https://gist.github.com/MjHead/6771eaba3adfe250378b4408878e75c5
Hi! Form making complete validation on the back-end, so it couldn’t be triggered on the front without submitting the form. But you can try to use a bit of JS code to make some validation on the front:
$( '.jet-form-builder[data-form-id="your-form-id"] input, .jet-form-builder[data-form-id="your-form-id"] select' ).on( 'blur', function() { this.reportValidity(); } );
Just add this code to he page where you used this form (or globally into some JS file which are loaded on each page) and replace ‘your-form-id’ with your actual form ID
Hi! Thanks for suggestion, yes we’ll check this and implement if its possible
Hi! Thanks for reporting, we’ll fix this with next release
Hi! Thanks for reporting, we’ll fix this with next release
Yes, its makes sense, so I think we’ll add this with one of future updates
Hi! You can do this with this tiny additional plugin – https://github.com/MjHead/jet-forms-use-field-values. You need to download and install it and than add required fields into your form in format you mentioned in your initial question – %FIELD::field_name% It could be used only inside form, not in the regular page content. Here is a screen with usage example – https://prntscr.com/1sf585z, result example – https://prntscr.com/1sf5dg9
Hi @mathewnaderi! At the moment there is no such possibility ?? We’ll add this feature with next release. Until this such feature can be added only with custom code, but it depends the method you select to store responses limit. So you can wait until next release or let me know please what method do you use to store responses limit and I’ll send you an example of the code to reset limit
@potel Thanks for the suggestion, we added this to roadmap for one of the next releases!
Hi @potel! Thanks for reporting. Please update to version 1.2.5, it should fix the problem.
Hi! Thanks for reporting, we’ll check this!
@slobajossi @moza24 Hi! We just released version 1.2.1 with the fix for this problem. Sorry for the inconvenience.
@kodam This plugin is based on JetEngine forms, but uses Gutenberg as editor for the form layout. That why it more flexible and allows to build more complex layouts. Also it has couple more features not included into JetEngine forms (because of limitations of editor). So if you already using JetEngine and not need to build forms with complex layouts, or extra features like conditional logic for the form actions etc, you can keep use JetEngine forms. If you need a complex form or you need only form functionality, not whole JetEngine possibilities, better to use this plugin.
Forum: Plugins
In reply to: [JetFormBuilder — Dynamic Blocks Form Builder] Select field searchHi! I updated add-on on github, now it works by CSS class – https://github.com/MjHead/jet-forms-select2. You need to add class ‘form-select2’ to field attributes – https://prntscr.com/111bcjn