Forum Replies Created
- AuthorPosts
linux
ParticipantBoth 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.linux
ParticipantHi 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.
linux
ParticipantHi,
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
linux
ParticipantHello, 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.linux
ParticipantI 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.linux
ParticipantYes, the second correct. My redirect working. Problem solve
linux
ParticipantHello, wordpress debug is working. But data still not save to wordpress db or external db. And debug.log no error.
linux
ParticipantI 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);linux
ParticipantI disable all plugins except quform and use twenty theme. Still not working
linux
ParticipantMy theme using Elementor page builder
linux
ParticipantTry 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);linux
ParticipantTry 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 );
}linux
ParticipantTry to upload debug.log from my local computer to my cpanel. And set permission to 666
But debug.log empty- AuthorPosts