Forum Replies Created
- AuthorPosts
jerkski
ParticipantI read over my original question and realized it was not specific enough. What I would like to do is be able to set the local path in a function where the signature png files would be stored, and save that path with the complete signature file name to the external database.
Set local root path: /volume/pool/signatures
so if the signature file is named:
signature-0820389.pngI’d like the path to be saved to the table:
/volume/pool/signatures/signature-0820389.pngAnd save the image to that path, not the database.
January 16, 2019 at 4:22 am in reply to: Checkboxes – Search elements and populate based on value #28245jerkski
ParticipantThank you Ally! Quite helpful!
jerkski
ParticipantAH, that did it! I had it set to clear the values. Thank you!!
jerkski
ParticipantHere is a visual example of my autocomplete search so you can have a better idea of what I am trying to accomplish. I have 4 quform text fields that bring up search results below as you begin to type and it finds matches in the mysql database. As I said, it works great. However, placing the code in the elements php files obviously is not the best way to embed custom fields as it repeats my code 1 time for each text field on the form.
Do you have any suggestions?
Attachments:
You must be logged in to view attached files.October 24, 2018 at 3:31 pm in reply to: Base Conditional Field on Prepopulated Dropdown Selection #27396jerkski
ParticipantThank you Ally! That worked wonderfully!
October 23, 2018 at 7:59 pm in reply to: Base Conditional Field on Prepopulated Dropdown Selection #27307jerkski
ParticipantAlly, is it possible to set the required function within the script as you’ve written?
<script> jQuery(function ($) { $('.iphorm_1_1').change(function () { if ($(this).val() == 'OTHER') { $('.iphorm_1_2').closest('.iphorm-element-wrap').show(); //set to required here } else { $('.iphorm_1_2').closest('.iphorm-element-wrap').hide(); //unset required here } }).change(); }); </script>
October 23, 2018 at 3:12 pm in reply to: Base Conditional Field on Prepopulated Dropdown Selection #27299jerkski
ParticipantHi Ally, thank you for the quick response, Yes, I do need the hidden field to be required if visible.
October 23, 2018 at 2:40 pm in reply to: Base Conditional Field on Prepopulated Dropdown Selection #27294jerkski
ParticipantI tried a variation of the jQuery you have on this link, but it did not work. (https://support.themecatcher.net/quform-wordpress/guides/advanced/submit-button-conditional-logic)
<script> jQuery(function ($) { $('.iphorm_1_1').change(function () { if ($(this).val() == 'OTHER') { $('.iphorm_1_2').show(); } else { $('.iphorm_1_2').hide(); } }).change(); }); </script>
Thoughts?
February 19, 2018 at 2:18 pm in reply to: Add or show/hide checkbox option based on user ID/User group #24395jerkski
ParticipantHah, works great!! Thank you!
February 15, 2018 at 3:09 pm in reply to: Add or show/hide checkbox option based on user ID/User group #24349jerkski
ParticipantHi, could this tutorial work for checkboxes? If so, this is exactly what I am looking for.
December 1, 2017 at 1:23 pm in reply to: Add html or image to sent email with a hidden field on form #23285jerkski
ParticipantHi, sorry for the late response. I am on 1.8.2 still
jerkski
ParticipantThank you Ally! How far out would you say this update is? If it is soon, then I’ll hold off on having it custom developed.
jerkski
ParticipantThank you Ally! When will chosen become an official feature in Quform?
jerkski
ParticipantHi all, I know this is an old topic, I see you said you will be adding Chosen as an option. That’s great! I do have one question in the meantime, I have been using the above code for a while now and it works great. the only problem is when I use ajax refresh after submit, the chosen field does not reset. Is there a way to add in a reset to the submit function to cleat this field?
jerkski
ParticipantHi Felix, do you know if there is any way to get this to work in the uniform theme?
- AuthorPosts