mjhead
Forum Replies Created
-
Hi! Yes, you can configure how the repeater value will be calculated – http://prntscr.com/10yzuau and than with Calculated field you can output total value from all repeater fields – http://prntscr.com/10yzvg4
Forum: Plugins
In reply to: [JetFormBuilder — Dynamic Blocks Form Builder] Select field searchHi! Sorry for the delay. https://github.com/MjHead/jet-forms-select2 – here is an example how you can add such functionality. You need download and install this plugin. Than you need to replace ‘field_name’ with your actual field name of the Select field you need – https://github.com/MjHead/jet-forms-select2/blob/master/jet-forms-select2.php#L27 This is very basic example it based on popular solution – https://select2.org/. So you can customize it in any way you want
Forum: Plugins
In reply to: [JetFormBuilder — Dynamic Blocks Form Builder] Register User Not working@buildw3 We just released version 1.1.4 which should fix the problem with Actions. Could you please install it it and check if problem is fixed?
Forum: Plugins
In reply to: [JetFormBuilder — Dynamic Blocks Form Builder] Register User Not working@buildw3 Thanks for the screenshots! Looks like we found the problem. We’ll fix it ASAP
Forum: Plugins
In reply to: [JetFormBuilder — Dynamic Blocks Form Builder] Register User Not workingHi! Thanks for reporting, we’ll fix the issue with CSS classes. As for Register User – we checked it and all works fine. Could you please send a screenshot of your action setup?
Forum: Plugins
In reply to: [JetFormBuilder — Dynamic Blocks Form Builder] Moosend Integration pleaseHi! Thanks for suggestion, we added this integration into our roadmap. Can’t give exact ETA, I’ll let you know in this thread when we’ll be ready with it.
@kaytellehoelgmailcom We just released 1.0.3 version with fix for this issue. Sorry for the inconvenience
Hi! Thanks for reporting will check this.
Forum: Plugins
In reply to: [JetFormBuilder — Dynamic Blocks Form Builder] Mailerlite IntegrationWe’ll add this integration as separate addon in the future (1-2 months I hope)
Forum: Plugins
In reply to: [JetFormBuilder — Dynamic Blocks Form Builder] apply form with shortcode@ocbroadband Hi! We’ll add this with next update
Hi! Thanks for the suggestion. We’ll add forms from demo as samples available for import with one of the next updates
Forum: Plugins
In reply to: [JetFormBuilder — Dynamic Blocks Form Builder] apply form with shortcodeHi! We just released version 1.0.2 with shortcode to insert the from anywhere you want. Here is an example
[jet_fb_form form_id="4338" submit_type="ajax" required_mark="***" fields_layout="row"]Forum: Plugins
In reply to: [JetFormBuilder — Dynamic Blocks Form Builder] Insert post like send emailHi!
At this moment you can do this only from the code with Call Hook notification. Here is an example:
– http://prntscr.com/z2kn49
– http://prntscr.com/z2ksj9add_action( 'jet-form-builder/custom-action/update-post', function( $request, $action ) { if ( ! empty( $action->response_data['inserted_post_id'] ) ) { $content = '<div><b>Phone:</b>' . $request['phone'] . '</div><div><b>Address:</b>' . $request['address'] . '</div>'; wp_update_post( array( 'ID' => $action->response_data['inserted_post_id'], 'post_content' => $content, ) ); } }, 10, 2 );Forum: Themes and Templates
In reply to: [Duena] Home page not working with Share Buttons by AddToAnyHi, Mark
By default Duena theme use custom generated excerpts for home page, so plugin can’t add his code to this post. You need to define manually excerpt for your posts (more about manual excerpts here) and plugin will work correctly
P.S. or you can wait update of Duena theme – in new version plugin will works correctly also with custom excerpts