cookieconsent.tpl 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {*
  2. **********************************************************
  3. * Developed by: Team Theme Metro
  4. * Website: http://www.thememetro.com
  5. **********************************************************
  6. *}
  7. <script src="{$WEB_ROOT}/templates/{$template}/assets/js/cookieconsent.min.js" data-cfasync="false"></script>
  8. <script>
  9. window.cookieconsent.initialise({
  10. "palette": {
  11. "popup": {
  12. "background": "{$themesettings.cookieconsent.ccbanner}",
  13. "text": "{$themesettings.cookieconsent.ccbannertext}"
  14. },
  15. "button": {
  16. "background": "{$themesettings.cookieconsent.ccbtncolor}",
  17. "text": "{$themesettings.cookieconsent.ccbtntext}"
  18. }
  19. },
  20. {if $themesettings.cookieconsent.ccposition}
  21. "position": "{$themesettings.cookieconsent.ccposition}",
  22. {/if}
  23. {if $themesettings.cookieconsent.cctheme}
  24. "theme": "{$themesettings.cookieconsent.cctheme}",
  25. {/if}
  26. "content": {
  27. {if $themesettings.cookieconsent.ccmessage}
  28. "message": "{$themesettings.cookieconsent.ccmessage}",
  29. {/if}
  30. {if $themesettings.cookieconsent.ccdismiss}
  31. "dismiss": "{$themesettings.cookieconsent.ccdismiss}",
  32. {/if}
  33. {if $themesettings.cookieconsent.ccbtnlink}
  34. "link": "{$themesettings.cookieconsent.ccbtnlink}",
  35. {/if}
  36. {if $themesettings.cookieconsent.cclink}
  37. "href": "{$themesettings.cookieconsent.cclink}"
  38. {/if}
  39. }
  40. });
  41. </script>