-
☆ A M B ☆
- 455 Posts
This parameter works well (i tested it).
I think output is cached and changes does not effect. clear cache....
That’s what I thought, I tried to clear the cache and to run the call un-cached, the page un-cached etc. Nothing. I had to hack the snippit to remove the link to the default CSS file.
Actually it was stranger than that, if I change the path to the default CSS it was adding a second CSS link not changing the first and so on.
In Evo 1.0.2 the default jot css is present on every page and I don’t even have any calls to jot.
To definitely turn it off!
1.use &css=`0`
2.edit the snippet:
// $Jot->Set("css", $css);
$Jot->Set("css", 0);
3. Edit jot.class.inc.php
// $this->config["css"]["include"] = !is_null($this->Get("css")) ? intval($this->Get("css")) : 1;
$this->config["css"]["include"] = !is_null($this->Get("css")) ? intval($this->Get("css")) : 0;
...then add CSS somewhere else.
Same problem here.
Step 2 (editing it directly in the snippet) did the trick.
So it seems to me that somewhere the value of &css is lost.
Tnx
Gino