Hi,
does anybody know how to add the meta tag:
<meta name="verify-v1" content="google_code_here=" />
on the index page or other pages?
Thanks
Hi,
does anybody know how to add the meta tag:
<meta name="verify-v1" content="google_code_here=" />
on the index page or other pages?
Thanks |
You can add meta content in the corresponding pages page_##.html file.
For index page go to /index.php
Look for this code:
$_page['name_index'] = 1;
Note the page name. Now go to templates/tmpl_uni/page_1.html (your page is determined by the number in the first line of the code above, it will be different for different pages.
Note the code:
__include _header.html__
Insert you code like this:
__include _header.html__
<meta name="verify-v1" content="google_code_here=" /> __promo_code__
Save the file and your done. It's inputted. |
Great !
Thanks for your help...with code and explanation. |