I don't understand much about flarum so I can't make my own extension but I tried it with this in the javascript column to "remove" ads for specific groups...
const usergroup = parseInt(app.session.user.data.relationships.groups.data[0].id);
const groups = [1,4,5,6];
if (groups.includes(usergroup)) {
document.querySelectorAll(".davwheat-ad").forEach(el => el.remove());
}
i don't know why but it worked XD