all emails are going to spam
]]>Dear Caldera People
Would like to attach 2 or 3 attachments to the autoresponder, depending if the toggle “simple/booking” is on/off.
Is there a way?
Thanks!
Cheers!
Dan
Dear Caldera People
Great Plugin – thanks!
I hava form displaying with a toogle button “simple/booking”, which shows more fields for booking.
I am doing this in the Notifications:
%freetext%
<strong>Auftraggeber</strong>
%name%
%phone%
%mail%
%website%
<strong>Event</strong>
%line_up% @?%event_name%
%location_name%, %adress%
%website_location%
%event_date%
%showtime% Showtime
%soundcheck% Soundcheck
<strong>Soundsystem/Mix</strong>
%soundsystemmix%
%mail__phone_audio_engineer_%
If just the simple form is filled, i would like to not generat the last two sections in the notification:
Event
%line_up% @?%event_name%
%location_name%, %adress%
%website_location%
%event_date%
%showtime% Showtime
%soundcheck% Soundcheck
Soundsystem/Mix
%soundsystemmix%
%mail__phone_audio_engineer_%`
Not filled fields are not displayed, but what about the plain text? Everything below “Events” should not be generated
Sampletext
<strong>Auftraggeber</strong>
Marcus
+41799999999
[email protected]
www.marcus.com
<strong>Event</strong>
@
,
Showtime
Soundcheck
<strong>Soundsystem/Mix</strong>
Is there a way?
Thanks!
Cheers!
Dan
self-deleting the uploaded file
After uploading files via advanced upload (2.0), the files are saved either in the selected folder when adding a filter or without any modification. This only happens with advanced file upload, with basic files are not deleted.
The upload runs smoothly, the console does not display errors, and the file is saved to a folder, or it creates a folder and saves the file to that folder. After a short time of 0.5 min to 5 min, the folder and the file are deleted. It will be deleted even if there are other files. The deletion time is random. Trying different clicks to load nothing had a direct effect on the deletion. The folder file will be deleted after a random time ... why ....
setting:
no attach to mailer
no allow multiple
no add to library
tested on WP: 5.4, 5.4.9, 5.4.10, 5.9.2,
tested on caldera version: 1.8.4, 1.9.4, 1.9.7
tested on php: 5.6 - 7.4 (only 7.2 + plugin can be activated)
All combinations tested.
Tested on clean WP installations
caldera, upload, self-deleting file,
]]>
when someone send a message tru the form, this error returns in wp mail smtp:
Email Source: Caldera Forms
Mailer: Padr?o (nenhum)
PHPMailer was able to connect to SMTP server but failed while trying to send an email.
For more details please try running an Email Test or reading the latest error event.`
when i send a test email its working fine, something is happening between caldera and smtp, can someone help? is it happening to someone else?
thanks in advance
]]>Hello. Is it possible to add a wp_author_email recipient? So that job applications are sent directly to the employer and not to the site administrator.
]]>I have tried to add this code and every alterative methods but its not working? any other solution?
input:checked + label{
color: red;
background-color: yellow;
padding: 20px;
}
]]>
Hello, I’ve discovered a conflict with your CSS that’s conflicting with WooCommerce API key creation page. See screenshot: https://imgur.com/fMREUCn
The form will not load, and upon inspection, I found a div id=”key-fields” class=”settings-panel” – and somewhere in the Caldera CSS it’s pulling display:none for the “settings-panel” class. Once I change that to display: block, then the woocommerce API form appears. https://imgur.com/LO6gr5S
]]>I’m having trouble translating the email sent to the customer after a contact request
I would like to translate this content into my language
Hi .
Thanks for your email.
We'll get back to you as soon as possible!
Here's a summary of your message:
------------------------
]]>
Hello sir,
May I have your suggestion how to solve the export file language error problem?
I have try in Thai language. Here is example: ? is ???. Error as ???.
But if I view the data in entry of form, the language is correct.
Could you please suggest how to solve this problem? Thank you.
]]>What is this? I keep seeing it on multiple WP install and it is triggering my malware scanners.
“ public_html/wp-content/plugins/caldera-forms/vendor/pimple/pimple/ext/pimple/pimple.c”
Is this something actually used by Caldera?
]]>Getting the reference here, I want to change the radio field to advance the page in the Multi-Page and submit automatically form at the end .
So I combined the two codes and added the extra code at the beginning based on the references here.
So the complete code is:
/**
Plugin Name: Header Scripts
*/
add_action( 'wp_footer', 'my_footer_scripts' );
function my_footer_scripts(){
?>
<script>
jQuery( document ).ready( function( $ ) {
//find highest page
var highest_page = 1;
//IMPORTANT: Change form ID to match your form
$( '.CF6198768c0fd31 .caldera-form-page' ).each( function () {
highest_page = $(this).data('formpage');
});
/** When radio field is selected go to next page */
//IMPORTANT: Change form ID to match your form
$('.CF6198768c0fd31 input:radio').on('change', function () {
var $this = $(this);
var $form = $(this).closest('form.caldera_forms_form'),
current_page = $form.find('.caldera-form-page:visible').data('formpage');
//check if we're on the last page
if ( highest_page == current_page ) {
//find and click submit
$form.find( 'input[type="submit"]' ).trigger( 'click') ;
}else{
//find and click next page button
$form.find('[data-formpage="' + current_page + '"]').find('.cf-page-btn-next').trigger('click');
}
});
/** Hide next page buttons and submit buttons*/
//IMPORTANT: Change form ID to match your form
$('.CF6198768c0fd31').find('.cf-page-btn-next, input[type="submit"]').hide().attr('aria-hidden', true);
});
jQuery( document ).ready( function( $ ) {
//find highest page
var highest_page = 1;
//IMPORTANT: Change form ID to match your form
$( '.CF6198768c0fd31 .caldera-form-page' ).each( function () {
highest_page = $(this).data('formpage');
});
/** When radio field is selected go to next page */
//IMPORTANT: Change form ID to match your form
$('.CF6198768c0fd31 input:radio').on('change', function () {
var $this = $(this);
var $form = $(this).closest('form.caldera_forms_form'),
current_page = $form.find('.caldera-form-page:visible').data('formpage');
//check if we're on the last page
if ( highest_page == current_page ) {
//find and click submit
$form.find( 'input[type="submit"]' ).trigger( 'click') ;
}else{
//find and click next page button
$form.find('[data-formpage="' + current_page + '"]').find('.cf-page-btn-next').trigger('click');
}
});
/** Hide next page buttons and submit buttons*/
//IMPORTANT: Change form ID to match your form
$('.CF6198768c0fd31').find('.cf-page-btn-next, input[type="submit"]').hide().attr('aria-hidden', true);
});
</script>
<?php
}
I saved the code using the code snippet plugin.
At the time see of (form preview) on the admin page, the action/form has worked as I wanted it to.
When a radio is selected, it advances the page. And when at the end of the form it submits the data without having to press the submit button (the submit button has been hidden).
Next, I placed this form (using a shortcode) to display on a single page in woocommerce, instead of the add cart button for some reasons.
The problem happened is the form doesn’t work the way it should.
The visitor has to click on the next button/submit button.(See)
(After double checking the form preview in admin page, the action/code is still working).
I have also placed the form on the wordpress page but same that not working.
Can anyone here help me see what went wrong and what I need to do to reach the target?
Any help is greatly appreciated,
thank you
Hi,
after updating to 1.9.5. i get this error on 2 sites:
Fatal error: Declaration of calderawp\calderaforms\cf2\Fields\FieldTypeFactory::get($id) must be compatible with Psr\Container\ContainerInterface::get(string $id) in /home/.sites/XXXXXXXXXXXXXX/wp-content/plugins/caldera-forms/cf2/Fields/FieldTypeFactory.php on line 11
Any ideas?
]]>Hi
I am looking for a option where there are 3 drop-downs. One is Country, second is State/Province and the 3rd is City. Based on the Country drop-down selection, State/Province drop-down values should be populated. Also the values in the City drop-down should also be populated based on the State/Province drop-down selection.
Could anyone please help me out on this
Regards
]]>When will the Migrate to Ninja forms be available? I use Caldera on a few sites, and the forms are complex. I would really rather not have to re-build them all before the sunset date. I already rebuilt all the simple ones.
Please give us a clue!
Thanks,
Amy
[email protected]
Caldera forms entries Timestamp at the Wp-Admin Panel is different from what I am exporting in CSV. The Exporting CSV shows the wrong timestamp
]]>I have created a form and set up an email notification on form submission. The email is generated but the summary doesnt show up in the email, it seems to be gibberish. The below is received in the email –
—-_SiB-1d5ac01e5f395a71-Part_1–
—-_SiB-1d5ac01e5f395a71-Part_1–
Please help ASAP
]]>I’m on the latest version of WordPress. Your scripts are loading twice on a page. Specifically <script id=”cf-form-front-js-extra”></script>
why?
]]>Are there any plans to getting this updated for WordPress 5.8?
]]>What all are doing? Are you migrating to Ninja Form… I am using caldera form heavily and use it in my custom forms programmatically. How to manage those codes? manually need to change?
Regards/Debashis
]]>Hi,
Creating a conditional field is deleting previous entries. To reproduce follow below steps –
– Create a simple form with 1 or 2 fields like text or number
– Create one entry for the form
– Now create a conditional?field .. like one field will say “is it a project?” with drop down “yes” and “no”. If user choose?“yes”, it will show a text field to enter project?id.
– Save the form. The previous?form entry will vanish.. I checked the database as well.
This is scary. How it is deleting an entry from the database altogether. Which is triggering the deletion? I am very scared to do anything with my forms now, not sure what else will do the same. And once deleted, there is no option to import entries.
I have few questions
– What is the best way to secure form entries? I don’t want any deletion in any way
– Is there any way to import entries once exported in csv?
– Can I prevent any deletion from the database even explicitly or? programmatically. Is it possible through wordpress role?
– I am using all forms in my custom program heavily. If I need to migrate to Ninja form eventually, which I don’t want to :), do I need to change all my?codes manually?
Need your wise advice urgently…
Regards/Debashis (+91-9163330079)
It is possible to have in the Paragraph Textarea a Character count that tells the user how many characters they have available, I alredy limit it to 3000 but I need to tell whoever writes how many they have left, something like 0/3000 or that 3000 appears and reduce 2999, 2998, 2997 and so, I don’t see this option in your plugin.
]]>We have Caldera set up on many websites and quite a few of them are now getting random empty submissions, no text at all. Even with required fields, an empty email gets sent through. These also do not appear in the Entries in the dashboard.
Has anyone else had this issue?
]]>I know that the round function: Returns the value of the number rounded to the nearest integer.
Example:
2.3 = 2
2.6 = 3
But, I would like to know how I can round a number to the highest number.
Example:
2.3 = 3
2.6 = 3
Thanks!
]]>Date upload: is working – but: attached to mailer is not working any more!
When I created this form, it works fine.
But now is not working any more – perhaps after last update.
Only with check load into Mediathek – the file will be loaded there, but this is not what we want…
Is there any solution to solve this.
Emails will be send per WordPress – not sendwp
]]>I got “Line item total doesn’t match total amount” error. Can you please help me what i doing wrong?? Any help would be appreciated.
#0 /home/agscl1/public_html/civicrm/site/wp-content/plugins/cf-civicrm/processors/order/class-order-processor.php(205): civicrm_api3('Order', 'create', Array)
#1 (closed) /home/agscl1/public_html/civicrm/site/wp-content/plugins/caldera-forms/classes/core.php(3435): CiviCRM_Caldera_Forms_Order_Processor->processor(Array, Array, '_cf_process_60e...')
#2 (closed) /home/agscl1/public_html/civicrm/site/wp-content/plugins/caldera-forms/classes/core.php(5213): Caldera_Forms::process_submission()
#3 (closed) /home/agscl1/public_html/civicrm/site/wp-content/plugins/caldera-forms/classes/core.php(3831): Caldera_Forms::process_form_via_post()
#4 /home/agscl1/public_html/civicrm/site/wp-includes/class-wp-hook.php(292): Caldera_Forms->cf_init_system('')
#5 (closed) /home/agscl1/public_html/civicrm/site/wp-includes/class-wp-hook.php(316): WP_Hook->apply_filters(false, Array)
#6 (closed) /home/agscl1/public_html/civicrm/site/wp-includes/plugin.php(484): WP_Hook->do_action(Array)
#7 (closed) /home/agscl1/public_html/civicrm/site/wp-settings.php(582): do_action('wp_loaded')
#8 (closed) /home/agscl1/public_html/civicrm/site/wp-config.php(90): require_once('/home/agscl1/pu...')
#9 (closed) /home/agscl1/public_html/civicrm/site/wp-load.php(37): require_once('/home/agscl1/pu...')
#10 (closed) /home/agscl1/public_html/civicrm/site/wp-blog-header.php(13): require_once('/home/agscl1/pu...')
#11 /home/agscl1/public_html/civicrm/site/index.php(17): require('/home/agscl1/pu...')
#12 (closed) {main}
]]>
Hello, im using a form in my website but it creates an error in WAVE Accessibility checker. The error is a missing form label but this form label generates everytime i refresh the page so i dont know where in the themes files is the corresponding php file to correct it! Where is this field coming from?
I placed an image here : https://ibb.co/MsDRppC so you can view what im taking about
]]>Duplicate ID occurs on performing w3c validation .
Tag with id = cf-form-front-js-extra is duplicate
Wordpress version 5.7.2
CalderaForm version 1.9.4
You can see error on this page : https://preprod-coopilote.akoladsolutions.com
Thanks for your response
Regards
]]>Hello, I have a multistep forms and when click next step after auto scroll to down. How I can disable auto scroll effect?
]]>I appreciate that Caldera is in process of being shuttered in favour of Ninjaform, but in the meantime it would be really useful if you could make it clear that Caldera is tested and compatible with more recent releases of WP.
]]>