Quote:
Originally Posted by lacidious
You are a genius. I am so stupid. I had it set to end of Jan '16 I think that was messing it up. Thank you!
Is there a way to only get it to show up on the main forum page and not when you click through to each category?
|
I don't believe this product gives you the ability to select on which pages/scripts it will work. I haven't tested this, but I would guess that if you edit the 3 plugins hooked at "init_startup", "parse_templates" and "process_templates_complete" such that they read something like:
PHP Code:
if (THIS_SCRIPT === 'index')
{
require...;
}
You want the require() function already present in those plugins to be inside the if-then block. Let me know if this works.