Hi David,
For some reasons I wanna make my categories and merchants pages noindex,follow. Any easy way to do that? I have no clue when it comes to PHP :P
Thx in advance m8.
Hi,
To do this, look in each of the following files (for categories and merchants respectively):
categories.php merchants.php
...for the following code:
require("html/header.php");
To add the robots meta tag, add the following code immediately BEFORE that line:
$header["meta"]["robots"] = "noindex,follow";
Cheers, David.
Thx for the quick reply David, very much appreciated :)
©2006-2025 IAAI Software | Contact Us | Privacy Policy
Hi,
To do this, look in each of the following files (for categories and merchants respectively):
categories.php
merchants.php
...for the following code:
require("html/header.php");
To add the robots meta tag, add the following code immediately BEFORE that line:
$header["meta"]["robots"] = "noindex,follow";
Cheers,
David.