i can see ads on desktop.,
This Advertiser used Google's DoubleClick ad serving/targeting platform to determine that you might be interested in this ad. Depending on your settings, this ad may have been matched to your interests or previous visits to websites, or it may have been selected based solely on the website you are visiting.
I expected that Adsense would not show ads on that page because of the content - It works on the other pages - That's not a problem...
It's the fact it is showing them on my Tablet on that page that worries me - They might get pissy about that content and punish me if they show a lot of ad views on that page (or other 18+ content) - It's all just pulled from the Youtube api and I can't stop that 18+ content from showing.....
Ironically it's THEIR content that is causing the issue...
I expected that Adsense would not show ads on that page because of the content - It works on the other pages - That's not a problem...
It's the fact it is showing them on my Tablet on that page that worries me - They might get pissy about that content and punish me if they show a lot of ad views on that page (or other 18+ content) - It's all just pulled from the Youtube api and I can't stop that 18+ content from showing.....
Ironically it's THEIR content that is causing the issue...
then either stop pulling 18+ content or stop using adsense.
adsense TOS says , you are , the owner of website is responsible for the content where adsense ads are being shown. either use moderation or dont use adsense ., or they will kill your account., if thats your site and thats your adsense ads /.
1) create a stop words list
e.g. penis,pussy,vagina,rape,sex,porn etc etc., last time i checked there were like 200+ words.,
and depends on the script and language its coded and DB solution its using.
add one field in DB main content table is_adult set default 0
do a cron job/while pulling videos from api which will check if the title/descrption of video contains one of the stop words , set is_adult = 1 for that video.
and while showing the video, if is_adult = 1 then dont show adsense ads, show exoclicks or some other adult friendly ads.
/.
hope this helps.,
on a side note, adsense doesnt allow sites like this, coz there is no added value/content to the videos/page and you cant use only youtube videos as content, you gotta write some content too and use YT videos as additional content,
i cant recall where i read that but trust me on this. been there, done that. few complaints and boom your adsense account is gone.
then either stop pulling 18+ content or stop using adsense.
adsense TOS says , you are , the owner of website is responsible for the content where adsense ads are being shown. either use moderation or dont use adsense ., or they will kill your account., if thats your site and thats your adsense ads /.
1) create a stop words list
e.g. penis,pussy,vagina,rape,sex,porn etc etc., last time i checked there were like 200+ words.,
and depends on the script and language its coded and DB solution its using.
add one field in DB main content table is_adult set default 0
do a cron job/while pulling videos from api which will check if the title/descrption of video contains one of the stop words , set is_adult = 1 for that video.
and while showing the video, if is_adult = 1 then dont show adsense ads, show exoclicks or some other adult friendly ads.
/.
hope this helps.,
on a side note, adsense doesnt allow sites like this, coz there is no added value/content to the videos/page and you cant use only youtube videos as content, you gotta write some content too and use YT videos as additional content,
i cant recall where i read that but trust me on this. been there, done that. few complaints and boom your adsense account is gone.
Mmmm - Thanks - This why I stayed away from them is the past - People end up waking up every morning wondering if their account is still alive...
Their is no database BTW it just pulls straight from the API - That's the issue - Put in any video ID in the url and it will pull that video - No way to moderate 18+ content.....
Mmmm - Thanks - This why I stayed away from them is the past - People end up waking up every morning wondering if their account is still alive...
Their is no database BTW it just pulls straight from the API - That's the issue - Put in any video ID in the url and it will pull that video - No way to moderate 18+ content.....
Time for a rethink - Thanks...
you can implement something like this
if while pulling video from YT api, check if stop word is in title , then dont show adsense ads . simple as that.
there are different rules for diffrent types of publishers., you can do what others cant if you are premium publisher of adsense.
Comment