Quote:
Originally Posted by kh99
You might be able to create a plugin using hook error_nopermission and code like:
Code:
$show['hide_adsense'] = true;
then in the template surround your adsense code with:
Code:
<if condition="!$show['hide_adsense']">
// adsense code
</if>
There might be something you could check so that you wouldn't need the plugin, but I couldn't see anything that was immediately obvious.
|
Unfortunately it's not working. When using your conditional I can still see the contents at every page even on those no permissions pages. Removing the ! prevents the content from being displayed at all pages without distinguishing no permission pages and yep I have double checked that I'm using the error_nopermission hook.
Quote:
Originally Posted by Simon Lloyd
Or in the template you could simply use this if condition
HTML Code:
<if condition="$show['search_engine']">
|
Unfortunately this is also not working. It shows nothing at any page and when using the same conditional but preceded with a ! it shows the contents in all pages regardless if those are no permission pages.
I'm trying to do this in the navbar template, vBulletin 3.8.5