*

Lopetoms

  • *****
  • 253 posts
  • HOla como estan
Google Adsense still not working
« on: July 05, 2022, 05:21:47 PM »
Google Adsense still not working
although I activate that https://prnt.sc/9cXu1AsJEeCm
hostoki.com

Marked as best answer by frosticek on July 11, 2022, 10:46:54 AM
*

mwindey

  • *****
  • 465 posts
Re: Google Adsense still not working
« Reply #1 on: July 05, 2022, 07:09:16 PM »
Banner code in main.php is not working with original code, there is no need to modify css file...:

Search for:
<?php if(eps_banner('home_top') !== false) { ?>
<div class="container banner-box<?php if(eps_is_demo()) { ?> is-demo<?php } ?>"><div class="inside"><?php echo eps_banner('home_top'); ?></div></div>
<?php } ?>

Easily change it to:
<div class="inside"><?php echo eps_banner('home_top'); ?></div>

Do the trick, same with banner middle
<?php if(eps_banner('home_middle') !== false) { ?>
<div class="container banner-box<?php if(eps_is_demo()) { ?> is-demo<?php } ?>"><div class="inside"><?php echo eps_banner('home_middle'); ?></div></div>
<?php } ?>

TO:
 <div class="inside"><?php echo eps_banner('home_middle'); ?></div>

*

Lopetoms

  • *****
  • 253 posts
  • HOla como estan
Re: Google Adsense still not working
« Reply #2 on: July 08, 2022, 04:59:23 PM »
thannk
hostoki.com