[rellect] AdBlock Detector [Deleted]

@rellect can I disable the notification from showing up on forum index? I don't show ads there.
Hey, yes that's possible.
Go to options -> [rellect] AdBlock Detector
There are options to exclude pages.

To exclude index add this value to the "Controller and Action" field:
XenForo_ControllerPublic_Index
 
Adding: XenForo_ControllerPublic_Index to Controller and Action is: does not appear to remove the message from the forum homepage. It might be due to some caching option in the backend.

Can you give some example uses of the Content Template is field? It would be great if you can start a FAQs post answering and updating regularly asked questions. Going through the thread usually give pointers on older versions of the plugin.

Also... I am assuming that only the Overlay system is unskippable?

Update: Tried everything. Cannot hide the message from the homepage. This is how settings look:

Imgur: The most awesome images on the Internet
 
Adding: XenForo_ControllerPublic_Index to Controller and Action is: does not appear to remove the message from the forum homepage. It might be due to some caching option in the backend.
My mistake, this is not the correct value to exclude the homepage. The correct value is: XenForo_ControllerPublic_Forum::Index
@Solidus you probably should update it in your forum as well.
Can you give some example uses of the Content Template is field?
Yes, for example, to exclude the homepage you'll write 'forum_list'.
 
Thanks. This appears to work.

Another query. What if I just want to display the message only on actual content pages (thread pages).
 
Thanks. This appears to work.

Another query. What if I just want to display the message only on actual content pages (thread pages).
That's a little harder, there's no setting to Enable in specific pages, but only to exclude. So the only way to do it is to exclude all other pages.

Forgot to answer your other question from the previous post - the overlay is indeed the only alert type which is unskippable.
 
Ok. That's fine. Maybe a feature request if others are also interested.

Another query... How do I disable it for a particular user group? Select ALLOW for both bypass and dismiss settings? I am currently testing it and it does not seem to work. Thanks!
 
Ok. That's fine. Maybe a feature request if others are also interested.

Another query... How do I disable it for a particular user group? Select ALLOW for both bypass and dismiss settings? I am currently testing it and it does not seem to work. Thanks!
Setting 'Allow' for the bypass permission is enough.
If that's doesn't seem to work, open the Analyze Permissions link which is in sidebar, and make sure that the value of 'Bypass detection' is Yes.
 
ok fixed that issue. only one thing is confusing. not related to this plugin.
i promote 'registered' users to 'regulars' after they post 20 messages.
i have set registered users to get the message after 1 hour time period.
i have set regulars users to get the message after 5 hours time period.
analyze permission tells me that regulars users are picking up the setting for registered users not regulars (1 hour).
i wonder how i can fix this thingy!
 
ok fixed that issue. only one thing is confusing. not related to this plugin.
i promote 'registered' users to 'regulars' after they post 20 messages.
i have set registered users to get the message after 1 hour time period.
i have set regulars users to get the message after 5 hours time period.
analyze permission tells me that regulars users are picking up the setting for registered users not regulars (1 hour).
i wonder how i can fix this thingy!
Unfortunately this is how the permission system works. It always picks the higher value.
In v2 this is going to be different to address this limitation.
 
I would love to get an option to turn on discourage mode for users who continue to ignore the warning. Though not sure if it would have any effect on search engine spiders! Invisible hindrance > visible hinderance.
 
Spent too much time on it. Ended up with this stupid message:

When you use an ad blocking app online, you hurt the free web powered by online advertising.
I get it. A lot of websites have terrible ads. I like to believe, IBF is not one of them.
If this website helped you, consider whitelisting it. Otherwise, feel free to block this message! Thanks.
 
Here is a little script to do that
Code:
<xen:if is="!{$session.robotId}">
<script>
$(document).bind('AdBlockOn', function(){
    $('#messageList > li:not(:first-child)').hide();
});
</script>
</xen:if>


Where do you put that script? Which file?

Thx!
 
Where do you put that script? Which file?

Thx!
Basically any place is okay. If you're not sure just put it in the end of the footer template.
By the way, you maybe should use this instead of the previous mentioned code, so it won't hide messages in private conversations
HTML:
<xen:if is="!{$session.robotId}">
<script>
$(document).bind('AdBlockOn', function(){
    $('.thread_view #messageList > li:not(:first-child)').hide();
});
</script>
</xen:if>
@dethfire, you maybe should consider this as well

Just got an email that is this what a member sees using FF 40 with ad blocker 2.6 Big problem!View attachment 117361
Looks like the adblocker blocks some vital resources on the site. Another reason to whitelist the site.
 
Back
Top Bottom