Tagged: cookie
-
AuthorPosts
-
December 21, 2020 at 7:54 pm #1269125
How do you appeal the cookie page in the footer? I think is important to put the link on the footer, next to the copyright. I used the default cookie setting on Enfold.
I CANNOT FIND HOW TO DO IT.
December 21, 2020 at 8:27 pm #1269155Hey Stilecatalini,
Please have a look at the following thread:
https://kriesi.at/support/topic/adding-terms-of-use-and-privacy-policy-link-to-footer/If you need further assistance please let us know.
Best regards,
VictoriaDecember 22, 2020 at 1:18 am #1269197No. Not understand.
I don’t have a “privacy policy” or “cookie” page.
I set everything from Enfold -> Privacy and Cookie, that is; or click “I accept” or “more information” and here a page opens (already pre-set by Enfold). I WOULD LIKE THAT PAGE TO BE TRACKABLE EVEN AFTER YOU CLICK “I ACCEPT”, OTHERWISE YOU DON’T HAVE THE POSSIBILITY TO FIND IT. YOU MUST GIVE THE POSSIBILITY TO TRACK IT!I WOULD LIKE TO DO IT IN THE FOOTER, NEXT TO COPYRIGHT. (AS USUALLY DO)
December 22, 2020 at 1:30 am #1269198Again; when you click “know more”, ON THE MOBILE YOU CANNOT CLICK “OK” BECAUSE DON’T SCROLL DOWN ENOUGH!! CRAZY
AAHHAHAHDecember 27, 2020 at 8:52 pm #1269881Hi,
Sorry for the very late reply, to create your own link in the socket that will open the cookie notice bar on click we will have to use a jQuery script. The element is shown when a class is removed from the container.
First to create the link please use this HTML with the custom class:<a class="show-cookie-consent">Show Cookie Consent</a>
then add this code to the end of your functions.php file in Appearance > Editor:function custom_show_cookie_consent_script() { ?> <script> (function($) { $('a.show-cookie-consent').on( 'click', function(e) { e.preventDefault(); $('.avia-cookie-consent.avia-cookiemessage-top.cookiebar-hidden').removeClass('cookiebar-hidden'); }); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_show_cookie_consent_script');
Best regards,
Mike -
AuthorPosts
- The topic ‘COOKIE’ is closed to new replies.