Hi Enfold team,
I’m using the lightbox code for some subscription forms which works great. Is there a way to exclude the accept cookies prompt for select pages? I’m already asking and tracking via the subscription form to accept the privacy policy. Thanks for your help.
/?iframe=true
Hey Julie,
Thank you for the inquiry.
You can use this code in the functions.php file to disable the message bar on specific pages.
add_action("wp", function() {
if(is_page(array(3251))) {
avia_update_option("cookie_consent", "hide_bar");
} else {
avia_update_option("cookie_consent", "cookie_consent");
}
}, 999);
Include the IDs of the pages where you need to hide the message bar in the array within the is_page conditional function above.
Best regards,
Ismael
Hey Julie,
Thank you for the inquiry.
You can use this code in the functions.php file to disable the message bar on specific pages.
add_action("wp", function() {
if(is_page(array(3251))) {
avia_update_option("cookie_consent", "hide_bar");
} else {
avia_update_option("cookie_consent", "cookie_consent");
}
}, 999);
Include the IDs of the pages where you need to hide the message bar in array within the is_page conditional function above.
Best regards,
Ismael
Thank you, thank you ;-) It works well Ismael. Have a great week.
j