Forum Replies Created
- AuthorPosts
VERESdesign
Participantok, then I’ll pass that on. Many thanks for the information.
Can we delete the messages with the links from here?
VERESdesign
ParticipantIt has to be said that the first time the page is loaded, no cookie is loaded, then you click around on a few sub-pages and as soon as you have been on a page with the form, the cookie is loaded everywhere again.
VERESdesign
ParticipantHi!
Unfortunately this does not work. The cookie is still loaded on pages where there is no form.
I have also activated the “Support Page Caching” option and used the Plugin “quform-limited-cookie”.I can’t disable the cookie completely (with the other plugin), because we have forms where we have to upload attachments, and that doesn’t work anymore.
Any other solutions?
thank you
VERESdesign
ParticipantI persuaded the customer not to change the tab order because the mobile view suffers as a result, so it has now been changed.
On the other hand, I would be interested to know how to do it correctly, or how the solution with the columns could work. Unfortunately, I didn’t understand the explanation in the first answer. Perhaps you can explain this in more detail!VERESdesign
ParticipantHI! I have 11 fields in my form where I also need a sorting from top to bottom (for the first two fields) and then from left to right. I copied your snippet for my form fields and created all fields in a certain order. However, the TAB now jumps to the bottom after the first two fields and then to the menu bar and only then does it continue in the form.
How can I fix this?https://ineshabermann.de/events/offene-yoga-stunde/ The form would currently be in here.
So how can I set the tab index so that it jumps without interruption?My script currently looks like this:
add_filter(‘quform_field_attributes_1_3’, function ($atts) {
$atts[‘tabindex’] = 398;
return $atts;
});add_filter(‘quform_field_attributes_1_18’, function ($atts) {
$atts[‘tabindex’] = 399;
return $atts;
});add_filter(‘quform_field_attributes_1_31’, function ($atts) {
$atts[‘tabindex’] = 400;
return $atts;
});add_filter(‘quform_field_attributes_1_32’, function ($atts) {
$atts[‘tabindex’] = 401;
return $atts;
});add_filter(‘quform_field_attributes_1_33’, function ($atts) {
$atts[‘tabindex’] = 402;
return $atts;
});add_filter(‘quform_field_attributes_1_34’, function ($atts) {
$atts[‘tabindex’] = 403;
return $atts;
});add_filter(‘quform_field_attributes_1_35’, function ($atts) {
$atts[‘tabindex’] = 404;
return $atts;
});add_filter(‘quform_field_attributes_1_37’, function ($atts) {
$atts[‘tabindex’] = 405;
return $atts;
});add_filter(‘quform_field_attributes_1_14’, function ($atts) {
$atts[‘tabindex’] = 406;
return $atts;
});add_filter(‘quform_field_attributes_1_16’, function ($atts) {
$atts[‘tabindex’] = 407;
return $atts;
});add_filter(‘quform_field_attributes_1_2’, function ($atts) {
$atts[‘tabindex’] = 408;
return $atts;VERESdesign
ParticipantHi!
i have the same problem.
We have hired a privacy firm to audit our website and they find fault with the fact that the session cookie for quform is already loaded before consent, which is not allowed to be according to GPDR.How can I set it so that the cookie is not loaded until there is a form on the page. The above script does not work for us.
Thank you for your help
- AuthorPosts