Can't edit my porevioius post anymore but I wanted to say in researching options for a client (Xenforo 2.2.2) I had a closer look at this addon and I've changed my mind. The configuration options allow you to remind members that by blocking ads they are reducing revenue for the forum owner which helps him to pay the bills and keep the forum free for members. Lots of other options, e.g., for user member upgrades to remove the notice. And the notice is dismissable for all members.In all likelihood, this will not work. What it will do is send members to your competitors who aren't requiring them to turn off the ad-blocker. Then you lose members without "recouping lost revenue".
Now I just need to find out where to customize the displayed message.
@Wutime
Found the phrases:
- wutime_adblock_phrase_notice_message
- wutime_adblock_prompt_message
Found it:
Template: wutime_adblock_styles.less
Original:
Code:
.{{$wutime_adblock_full__box}} {
border-radius:10px;
background: fade(rgb(183,28,28), 90%);
width: 90%;
height: 45%;
min-height:250px;
max-width:60em;
position: absolute;
overflow: auto;
margin: auto;
top: 0;
left: 0;
bottom: 0;
right: 0;
padding: 10px;
font-size: 1.067em;
text-align: left;
color: rgb(250,250,250);
z-index: 9999;
}
Code:
.{{$wutime_adblock_full__box}} {
border-radius:10px;
background: fade(rgb(183,28,28), 90%);
width: 90%;
height: 45%;
min-height:250px;
max-width:60em;
position: absolute;
overflow: auto;
margin: auto;
top: 0;
left: 0;
bottom: 0;
right: 0;
padding: 10px;
font-size: 1.067em;
text-align: left;
/* color: rgb(250,250,250); */
color: #000;
z-index: 9999;
}
Last edited: