Thank you, Martin. I think the issue you raised could be addressed by enabling/disabling ads for certain user roles. That shouldn’t be too complex. People should appoint a different role for paid members.
I think I might have figures this out by editing line 2788 on fv-player-pro.class.php
Old:
if (count($aVideoAdsEnabled) == 0 ) {
return $aItems;
}
New:
if (count($aVideoAdsEnabled) == 0 OR is_user_logged_in() ) {
return $aItems;
}
Do you agree this is the right place to put the code? I’m guessing there could be an easier way but I just don’t want to wait for another update. Can I keep this as it is without problems?
Thank you