codimex
Forum Replies Created
-
Looking forward this fix, too!
Same here. Blank page occurs in several scenarios, like customizing the colors or editing fields such as the section field.
Hi again! Thank you so much for opening your personal email to me. Let me do a few tests more, because the main site shows errors, but a mirror site I have of the same website doesn’t show errors, which is pretty weird and nonsense.
In the meantime, let me rate you with 5 stars for all the hard work behind this plugin and your readiness to help.
Hi, the problem is not solved yet. Any plans to fix it in future updates?
Thank you again for yor answer. Let me show you an example of an API-generated Google Map with your plugin in one of my websites. It is rendered by means of an embedded js
<script type="text/javascript">...</script>in a shortcode (see attached screenshot):
https://paste.pics/7OW5I
After the update, the map just doesn’t render (just a blank line; no need to attach the screenshot). I’ve rolled back to 4.6 until we can figure out what’s going on.
Thank you for your patience with us users after this critical update. I look forward to your answer!Hi again, Aakash. Thanks for your quick response and your readiness to help. Let me elaborate. Before 5.X I used to have js codes after my regular HTML, inserted like this:
<script type="text/javascript"> My js script </script>
But now, they don’t work anymore, and the js script are rendered as a regular text. Am I still allowed to include js scripts under the < script > HTML tag? 5.0.2 version solves the shortcode issue (thanks again!!!) but not the js thing.Hi! Thank you for your fix! Yes! 5.0.2 fixes that, but javascript scripts still don’t work. Do you have plans for including js back to the plugin?
Sure! Just did! Thank you!!!
Hi! You’re right. Manual backups work perfectly via incognito mode, at least on Firefox (will try to do it later on Chrome). 🙂 It’s strange that I flushed cache yesterday and didn’t work. The problem seems fixed for me. Feel free to mark this as resolved. Thank you and keep up with the good job! 🙂
If you want to, I could share my login credentials privately with you, so that you can examine it personally and debug the error for future improvements. It’s the least I could do for your amazing plugin.
OMG! I disabled Ajax uploads and it’s working now!!! Sometimes “you can’t see the forest because of all the trees”. I was searching for complicated solutions and it was sooo simple to solve, in plain sight! Thank you for guiding me cleverly to the solution and congrats for this amazing, referential plugin.
Hi! Thank you for your prompt response! Sorry I didn’t see that pinned topic. Anyway, the option “Enable Ajax file uploads” is enabled and the problem persists. Any idea? :”( Running on Loco Translate v2.3.1
Hi! I just came across to this topic, as I was having the same issue. Sadly, Caldera Forms seems not to provide answers in this forum, and I found a link with the solution, just in case someone needs it eventually.
Long story short, even if your json import files are ok, it seems that WordPress is unable to recognize those type of files properly. Add this code to your functions.php file, or via plugin (Code Snippets would do the magic for you, and execute it on the admin area) and check if the problem is solved. Worked like a charm to me.
add_filter( 'wp_check_filetype_and_ext', 'wpse323750_secondary_mime', 99, 4 ); function wpse323750_secondary_mime( $check, $file, $filename, $mimes ) { if ( empty( $check['ext'] ) && empty( $check['type'] ) ) { // Adjust to your needs! 'text/html' or 'application/json' $secondary_mime = [ 'json' => 'text/html' ]; // Run another check, but only for our secondary mime and not on core mime types. remove_filter( 'wp_check_filetype_and_ext', 'wpse323750_secondary_mime', 99, 4 ); $check = wp_check_filetype_and_ext( $file, $filename, $secondary_mime ); add_filter( 'wp_check_filetype_and_ext', 'wpse323750_secondary_mime', 99, 4 ); } return $check; }Source: https://torstenlandsiedel.de/2019/01/28/kaputten-import-bei-caldera-forms-reparieren/
Thank you for testing that on your end! Looking forward this future update. Keep up with the good job!
Looks like you had the same problem I had. Check this out. I bet this will help you, too: