Quote:
Originally Posted by Jakeman
That's a good idea. But it didn't work.
Based on that suggestion, I looked at the STANDARD_REDIRECT template and the standard_redirect() function, looking for variables to check. I tried them all, no luck.
|
I've never liked those phpinclude templates!
For fear of saying something obvious and making myself look like an idiot, I'll suggest a long and boring way of doing things.
1. I'd put up a flag in print_standard_redirect(), functions.php.
PHP Code:
$GLOBALS['isredirect'] = true;
2. I'd add the hitcounter PHP into the print_output function in functions.php, if the page isn't a redirect.
PHP Code:
if (!$GLOBALS['isredirect'])
{
// hit counter code
}
With all the global gubbins, to make sure the code worked inside the functions. Probably won't work, or I've missed the point entirely.