Very good mod! Just installed on vB 4.1.
I agree with you BadgerDog about the logic.
"Show if member of" is easier to understand than "hide (not show) if is not member of", though result is identical, I guess.
You can edit the xml file to do that. Find this line (n?31):
Code:
if ($vbulletin->options['dppa_insidepost'] && !is_member_of($vbulletin->userinfo, explode(',', $vbulletin->options['dppa_insidepost_hidegroups'])) &&
Modify like this:
Code:
if ($vbulletin->options['dppa_insidepost'] && is_member_of($vbulletin->userinfo, explode(',', $vbulletin->options['dppa_insidepost_hidegroups'])) &&
This is for the insidepost. You can do the same for the afterpost. And modify the phrases in the same file ("hide" --> "show"). and re-install the product.
I wish this mod could accept differents ads according to forum ids.