Forum Replies Created
- AuthorPosts
zittis
ParticipantOMG, you are absolutely right! i was autocompleting my data from step 1 of the form and it even applied on step 4! Thanks a lot!
zittis
ParticipantWorking with quforms over the last 3 years i think that there is a need to record users actions on editing entries.
zittis
ParticipantAny news on this?
I agree with you that QUForm cookie is a functional cookie but the same applies for WordPress Cookies. The cookie should not be loaded before consent. Adding codes for every form is very complicated and easy-to-forget!
zittis
ParticipantI have the same problem. Pls help
- This reply was modified 3 years, 11 months ago by
zittis.
zittis
ParticipantThanks man. You are really great!
zittis
ParticipantHere comes Form number 3 with calculations. I have made 2 other forms already that have calculations. The form is here: https://www.gcsc.ac.cy/secondary/examinations-selection-2021/
But I always get a zero in my calculation.
I am attaching the code I added in Custom JavaScript.
Can you pls help me?
Thank you.
Attachments:
You must be logged in to view attached files.zittis
ParticipantThank you very much
zittis
ParticipantIs there a way to disable an option from a select menu (dropdown list)?
I can do that using radio buttons and check boxes.
zittis
ParticipantThank you very much. Your support rocks!
zittis
ParticipantThanks again very much Ally.
One more thing please. How can I disable on of the checkboxes options. I don’t want to delete it, just disable it so that the user won’t be able to select it.
Thanks again.
zittis
ParticipantPls help
I added this in the html
<div id=”form-total2″></div>Then added this code but still it doesnt work:
jQuery(function ($) {
var calculate = function () {
var total = 0;// Week 1
if ($(‘.quform-field-6_255_1’).is(‘:checked’)) {
total += 100;
}
// Week 2
if ($(‘.quform-field-6_255_2’).is(‘:checked’)) {
total += 100;
}
// Week 3
if ($(‘.quform-field-6_255_3’).is(‘:checked’)) {
total += 100;
}
// Week 4
if ($(‘.quform-field-6_255_4’).is(‘:checked’)) {
total += 100;
}
// Week 5
if ($(‘.quform-field-6_255_5’).is(‘:checked’)) {
total += 100;
}// Display the result to the user
$(‘#form-total2’).text(‘€’ + total);// Set the value of the hidden field
$(‘.quform-field-6_196’).val(” + total);
};// Calculate on page load
calculate();// Recalculate when these checkboxes or radio buttons are clicked
$(‘.quform-field-6_255_1, .quform-field-6_255_2, .quform-field-6_255_3, .quform-field-6_255_4, .quform-field-6_255_5).click(calculate);});
zittis
ParticipantHave you manage to have a look at this issue?
zittis
ParticipantThank you very much
zittis
ParticipantI have the same problem. I have sent an email explaining that at info@themecatcher.net
- This reply was modified 3 years, 11 months ago by
- AuthorPosts