Forum Replies Created
- AuthorPosts
Venom
ParticipantPlease try to rename ‘quform_5_5’ to ‘quform_element_valid_5_5’
Venom
ParticipantHi Ally,
I tried to add the above code and the file name could be renamed successfully. However, I could not get the entry id inside the filter, it returned empty value. Is there a way to get the entry ID inside the filter that the file name could be appended to the filename.
$entry_id = $form->getEntryId();
Regards,
Venom
Venom
ParticipantI have tried to put it into the jQuery document ready function as well, it still showed “An error occurred loading the preview (Ajax error)”, However, it could prompt the alert test message on the front end.
<?php
add_action('quform_pre_display_XX', function (Quform_Form $form) {
?>
<script>
jQuery(document).ready(function($){
alert('test');
});
</script>
<?php
});
?>Venom
Participant
iphorm_pre_display
The name has changed.Old version:
function my_pre_display($form)
{
// Custom code
}
add_action('iphorm_pre_display_1', 'my_pre_display');
New version:function my_pre_display(Quform_Form $form)
{
// Custom code
}
add_action('quform_pre_display_1', 'my_pre_display');Venom
ParticipantHi Ally,
I want to know how can I trigger the pre_validate hook, when the user clicks on “Save Draft” element (I want to be a button without submit action). If the “Save Draft” is the submit button, it would go through the validation process and insert the record to the Entry table and it would send out an Auto reply email.
Instead, I want to insert the record to my custom database table only. Until the user clicks “Confirm”, then the record would be inserted to the Quform Entry table and sent out Auto reply email.
Regards,
Venom
Venom
ParticipantGreat plugin.
Let’s see if it is possible to add a new feature for future release.
Bulk entries import like the following plugin
https://gravityview.co/extensions/gravity-forms-entry-importer/Venom
ParticipantThank you for your great code sample.
I am still reviewing the source code of Quform 2.0. It has many new features and the design pattern is based on DI. It will be great if you have more reference samples for using Quform 2.0 in advance topic guide.
October 4, 2017 at 1:16 am in reply to: Creating a plugin for custom code -Retrieve QuForm entries #22491Venom
ParticipantIt seems that the code for retrieving those entries now is encapsulated in Quform_Repository class. If it is correct, how could I make use of this class from my custom plugin?
October 3, 2017 at 4:30 pm in reply to: Creating a plugin for custom code -Retrieve QuForm entries #22488Venom
ParticipantFor Quform 2.0, where does it go for the function of iphorm_entries() ?
September 28, 2017 at 7:09 am in reply to: Multi Page Form with Additional Page Data Appeneded #22339Venom
ParticipantHi Ally,
I would like to have some example code for this.
Regards,
Venom
Venom
ParticipantHi
May I know the schedule of the next major update that we can decide the approach for development.
Regards,
Venom
Venom
ParticipantHi,
It would be great if the plugin supports entry editing, any good news?
Regards
Venom
- AuthorPosts