This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* PAYMENT */ | |
// Executes when payment is failed | |
do_action('wppayform/form_payment_failed', $submission, $transaction, $form, $charge, $type); | |
// Executes when stripe payment is failed | |
do_action('wppayform/form_payment_stripe_failed', $submission, $transaction, $form, $charge, $type); | |
// Executes when paypal payment is processing |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_filter('fluenform_rendering_field_data_select', function ($data, $form) { | |
if ($form->id != 91) { | |
return $data; | |
} | |
// do the dynamic part if and only the name attriibute is 'dynamic_dropdown' | |
// Please use the corresponding field name for your case. | |
if (\FluentForm\Framework\Helpers\ArrayHelper::get($data, 'attributes.name') != 'dynamic_dropdown') { | |
return $data; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//app\Services\FormBuilder\Notifications\EmailNotification.php | |
$emailBody = apply_filters('fluentform_email_body', $emailBody, $notification, $submittedData, $form); | |
$subject = apply_filters('fluentform_email_subject', $notification['subject'], $notification, $submittedData, $form); | |
$emailTo = apply_filters('fluentform_email_to', $notification['sendTo']['email'], $notification, $submittedData, $form); | |
return wp_mail( | |
$emailTo, | |
$subject, | |
$emailBody, | |
$headers, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter( 'fluenform_rendering_field_data_input_text', function($data,$form){ | |
$custom = ['value'=>'Hello','readonly'=>'true']; | |
$data['attributes'] =array_merge($data['attributes'] ,$custom); | |
return $data; | |
},10,2 ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 1. Add input text elemet to show the difference | |
// 2. add 'time-1' & 'time-2' class to the to time input field | |
// 3. paste the following code in fluent form custom JS | |
// time format HH:MM | |
var show_input_selector = '.hour'; | |
var time1 = jQuery('.time-1'); | |
var time2 = jQuery('.time-2'); | |
const convertTime12to24 = (time12h) => { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Unique email vaildation | |
*/ | |
add_action('fluentform_before_insert_submission', function ( $insertData, $data, $formId ) { | |
if($formId->id != 100) { // You can pass your form id here | |
return; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Age calculator | |
// 1. First take a Date picker & a text input field | |
// 2. In the text input element add the class 'age' | |
// 3. Add a custom class 'date' in the date picker ,then add the following js in your fluent form custom js | |
jQuery( ".date" ).change(function() { |
NewerOlder