Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.

how can i disable single panel-extensions on a particular page?

edited October 2006 in Vanilla 1.0 Help
same as in topic.


how can i disable single panel-extensions on a particular page?


anyone?

thanks for info. :D

Comments

  • There is usually an If statement in the extension code that tells the extension when to execute. For example, in the YellowFade extension, we have: if (in_array($Context->SelfUrl, array("index.php", "categories.php", "comments.php", "search.php", "post.php", "account.php", "settings.php"))) This means the extension will only be executed on those pages listed. If you would want to exclude it from the search page, then you would remove the reference to that page in the array.
  • very nice, thanks for your help jimw
This discussion has been closed.