Forum Replies Created

Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • in reply to: Export data 16 digits #32847
    linux
    Participant

    Both Excel 2017, CSV, ODS
    The field always replace last 2 digits with 00
    I attach 3 files xlxs, csv and ods
    Look at “NIK KTP” column.

    Attachments:
    You must be logged in to view attached files.
    in reply to: Autofill value from database or excel file #32829
    linux
    Participant

    Hi Ally,

    Autofill is work, but it make my visitor confuse. Condition,all elements using logical. [quform-field-1_4] and [quform-field-1_5] is readonly.

    When i fill fullname [quform-field-1_3], my sql query will select data and autofill next element phone number [quform-field-1_4] and email [quform-field-1_5]. Because quform-field-1_4 get value from sql, it will automaticaly show.

    But for next element quform-field-1_5 will not show. It will show if i click quform-field-1_4 and click another place on page. Also, for quform-field-1_6 will not show. It will show if i click quform-field-1_5 and click another place on page.

    in reply to: Autofill value from database or excel file #32826
    linux
    Participant

    Hi,

    Thank you for fast respond. How to autocomplete ? Example when i type “Jh..” on fullname field will show nam suggestion from database Jhon, or Jhonny or Jonny Andrea.

    Thank you

    in reply to: Save to Database #32675
    linux
    Participant

    Hello, my problem solved by your update varchar to 255 characters.
    Anyway, how to prevent duplicate entry ? I see to many duplicate record on my table. And timestamp is same for duplicate entry.

    in reply to: Save to Database #32663
    linux
    Participant

    I send the credential login. Check your contact form.
    Please check it asap. I difficult to monitoring this ticket because we have different time. At 11PM now.

    in reply to: REDIRECT URL BASED ON SELECT DATA #32662
    linux
    Participant

    Yes, the second correct. My redirect working. Problem solve

    in reply to: Save to Database #32638
    linux
    Participant

    Hello, wordpress debug is working. But data still not save to wordpress db or external db. And debug.log no error.

    in reply to: REDIRECT URL BASED ON SELECT DATA #32637
    linux
    Participant

    I change codes to below. Data submitted but the page not redirect

    add_filter(‘quform_confirmation_redirect_url_1_1’, function ($url, Quform_Confirmation $confirmation, Quform_Form $form) {

    $selection = $form->getValueText(‘quform_1_6’);

    switch ($selection) {
    case ‘ToT BTCLS’:
    $url = ‘https://tinyurl.com/xxxxx1’;
    break;
    case ‘ACLS’:
    $url = ‘https://tinyurl.com/xxxxx2’;
    break;
    case ‘GELS’:
    $url = ‘https://s.id/xxxxx3’;
    break;
    case ‘ALTEM’:
    $url = ‘https://s.id/xxxxx4’;
    break;
    case ‘PPI DASAR’:
    $url = ‘https://s.id/xxxxx5’;
    break;
    case ‘PECCAMVID’:
    $url = ‘https://s.id/xxxxx6’;
    break;
    case ‘VAKSINATOR’:
    $url = ‘https://s.id/xxxxx7’;
    break;
    }

    return $url;
    }, 10, 3);

    in reply to: Save to Database #32634
    linux
    Participant

    I disable all plugins except quform and use twenty theme. Still not working

    in reply to: Save to Database #32632
    linux
    Participant

    My theme using Elementor page builder

    in reply to: Save to Database #32631
    linux
    Participant

    Try to use code below. But still not save to database

    //SAVE TO DATABASE
    add_filter(‘quform_post_process_1’, function (array $result, Quform_Form $form) {
    global $wpdb;

    $data = array(
    ‘nama’ => $form->getValueText(‘quform_1_3′),
    ’email’ => $form->getValueText(‘quform_1_4’),
    ‘telepon’ => $form->getValueText(‘quform_1_5’),
    ‘pelatihan’ => $form->getValueText(‘quform_1_6’),
    );

    $wpdb->insert(‘pelatihan’, $data);

    return $result;
    }, 10, 2);

    in reply to: Save to Database #32630
    linux
    Participant

    Try with codes below, but debug.log still empty

    define( ‘WP_DEBUG’, true );
    if ( WP_DEBUG ) {
    @error_reporting( E_ALL );
    @ini_set( ‘log_errors’, true );
    @ini_set( ‘log_errors_max_len’, ‘0’ );
    define( ‘WP_DEBUG_LOG’, true );
    define( ‘WP_DEBUG_DISPLAY’, false );
    define( ‘CONCATENATE_SCRIPTS’, false );
    define( ‘SAVEQUERIES’, true );
    }

    in reply to: Save to Database #32629
    linux
    Participant

    Try to upload debug.log from my local computer to my cpanel. And set permission to 666
    But debug.log empty

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