*

leuname07

  • ***
  • 53 posts
Adsense adult category
« on: May 30, 2019, 10:52:23 PM »
Hello,

I have one question... in my site i have several main categorys, in one of that categorys i have adult content... seem adsense dont like that and is always sending warning email....

So my question in... how can avoid adsense to be displayed in any position when a user is inside that category or sub-categorys with adult content..

I think this is very impotant because i dont want to give any reason to google to block my account

Thank you

*

MB Themes

Re: Adsense adult category
« Reply #1 on: May 31, 2019, 04:12:10 PM »
@leuname07
You will have to place conditions using category id to not show it on these categories.

Code: [Select]
<?php if(osc_search_category_id()[0] <> XY) { ?>
  ... my adsense ..
<?php ?>
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

leuname07

  • ***
  • 53 posts
Re: Adsense adult category
« Reply #2 on: June 06, 2019, 11:03:33 PM »
I try this but it's not working, i see the adsense banner :

Code: [Select]
   <?php if($c == 3) { ?>
        <?php

$adult_categories 
= array(3273263253243233223213201335133413331332133113301329132813273193183173161326132531531413241323313312311132213211320131931020930813181317307107); // list your categories
if(!in_array(osc_search_category_id(), $adult_categories)) { ?>

      <?php echo veronika_banner('search_list'); ?>
    <?php ?>
   
    <?php ?>

Can you help me ?

Thank you !

*

leuname07

  • ***
  • 53 posts
Re: Adsense adult category
« Reply #3 on: June 07, 2019, 12:01:13 PM »
It's OK, i change osc_search_category_id for osc_category_id and it's working now !