Forum Replies Created

Viewing 15 posts - 1 through 15 (of 42 total)
  • Author
    Posts
  • in reply to: Export long numeric value becomes scientific notation #31694
    Venom
    Participant

    Agree. That will be great to add a hook for us to modify data before setting the value.

    However, I am afraid of that is the issue of PhpExcel instead of your code.

    May be the hook could be supplied with the format code and it will be passed to the cell style before writing into the CSV/Excel/Html?

    • This reply was modified 4 years, 10 months ago by Venom.
    • This reply was modified 4 years, 10 months ago by Venom.
    Venom
    Participant

    I did a further test. it should be allowed, however in the preview screen, it displays as plain text only.

    Venom
    Participant

    Hi Ally,

    I want to know in 2.12.0, I created a new form, does it allow to place <script> xxx</script> inside HTML element anymore? It seems it will treat it as plain text only.

    Regards,

    Venom

    Venom
    Participant

    Hi Ally,

    I found a backup for the Form and imported the Form back to the latest version 2.12.0. It works again.

    in reply to: Select2 element outside Quform form #30052
    Venom
    Participant

    Hi Ally,

    You are correct. The root cause is the same ID for those select elements that make Select2 from work propertly . Thank you for your great support. Please close the case.

    regards,

    Venom

    in reply to: Data Encryption for Form Data #29466
    Venom
    Participant

    Hi Ally,

    Thank you so much for the great enhancement. Please close the case.

    Regards,

    Venom

    Venom
    Participant

    I fixed this issue by adding a new css style for the modal
    Reference: https://developer.mozilla.org/en-US/docs/Web/CSS/-webkit-overflow-scrolling

    .modal{
    -webkit-overflow-scrolling: touch;
    }

    in reply to: Populate text field depending on dropdown selection #28284
    Venom
    Participant

    Hi,

    I think that is due to the variable not available outside the function scope. You might try this.

    <script>
    jQuery(document).ready(function ($) {

    $('.quform-field-5_11').change(function () {
    vCodigo = '';
    if ($(this).val() == 'Guatemala') {
    vCodigo='502';
    } else {
    vCodigo='999';
    }
    $('.quform-field-5_12').val(vCodigo);
    });

    });

    </script>

    in reply to: Upload location to another disk or server? #28283
    Venom
    Participant

    Hi,

    I think you can download the AWS sdk from AWS S3 PHP SDK
    and write a custom plugin to add custom code inside hook quform_upload_absolute_path to modify the file to be saved other than default upload folder of wordpress. Then inside the hook quform_post_process to add the some custom PHP code using AWS S3 library to upload the file to cloud and delete the original file.

    Regards,

    Venom

    in reply to: filled data only and time #28281
    Venom
    Participant

    Hi,

    You have set the default value to 0. It is not empty. It will be saved to the database. You might try to use the Placeholder to show 0.

    Regards,

    Venom

    Attachments:
    You must be logged in to view attached files.
    in reply to: filled data only and time #28265
    Venom
    Participant

    Hi,

    Please refer to the following thread, it might help.

    It seems that Quform would send those fields with value only in notification email by default if using the {all_form_data}.

    not-getting-empty-fields-in-results-email

    • This reply was modified 6 years, 4 months ago by Venom.
    Attachments:
    You must be logged in to view attached files.
    in reply to: filled data only and time #28259
    Venom
    Participant

    Hi Moe,

    For the time picker, you might refer to this tutorial.

    Time

    It has time range setting for that.

    Regards,

    Venom

    Attachments:
    You must be logged in to view attached files.
    in reply to: Conditional Logic Based on Selected Email #28256
    Venom
    Participant

    Hi,

    Please go to the element setting of the” list of topics” field and try to add the following conditional logics as shown in the screenshot.

    Regards,
    Venom

    Attachments:
    You must be logged in to view attached files.
    in reply to: Form with creating user, save user_id in data form #28210
    Venom
    Participant

    Hi tkx,

    You might try this.

    add_action('quform_post_process_2', function (array $result, Quform_Form $form) {

    ....... //below your code
    //On success
    if ( ! is_wp_error( $user_id ) ) {
    echo "User created : ". $user_id;
    global $wpdb;
    $entry_id = $form->form_entry_id;
    $sql = $wpdb->prepare("update wp_quform_entries set created_by = %s where id =%d", $user_id , $entry_id);
    $result = $wpdb->query( $sql);
    }

    }

    in reply to: Quform Upload URL Filter #28209
    Venom
    Participant

    Hi Ally,

    Great support. I would update my code as well to include the “s” for the next update. Please mark it as resolved.

    Regards,

    Venom

Viewing 15 posts - 1 through 15 (of 42 total)
Be inspired. © 2025 ThemeCatcher Ltd. 20-22 Wenlock Road, London, England, N1 7GU | Company No. 08120384 | Built with React | Privacy Policy