Ok, i put this:
function head_script() {
qa_html_theme_base::head_script();
$this->output('<link rel=”stylesheet”
href=”
http://xxxxx.com/divante.cookies.min.css”
type=”text/css” media=”all” />');
}
function head_script() {
qa_html_theme_base::head_script();
$this->output('<script type=”text/javascript”
src=”
http://xxxx.com/divante.cookies.min.js“></script>
<script>window.jQuery.cookie || document.write(‘<script
src=”
http://xxxxxx.com/jquery.cookie.min.js“></script>’)</script>
<script type=”text/javascript”>
$.divanteCookies.render({
privacyPolicy : true,
cookiesPageURL : ‘
http://xxxx.com’
});
</script>');
}
And i have this error:
Fatal error: Cannot redeclare head_script() (previously declared in /usr/home/xxx/domains/xxxx.com/public_html/qa-theme/Snow/qa-theme.php:3) in /usr/home/xxx/domains/xxxxx.com/public_html/qa-theme/Snow/qa-theme.php on line 21
Line 3 is:
qa_html_theme_base::head_script();
and 21 is:
}