speedy

Member

Forum Replies Created

  • In reply to: Adsense in category/tag/search pages

    #13561

    Hi,

    I finally managed to fix the problem. I just changed the following code in loop.php:

    <?php if (is_single() || is_page() || (is_front_page() && get_option('graphene_adsense_show_frontpage')) || is_archive() || is_search()) {graphene_adsense();} ?>

    New code:

    <?php if (is_single() || is_page() || (is_front_page() && get_option('graphene_adsense_show_frontpage')) || (is_archive() && get_option('graphene_adsense_show_frontpage')) || (is_search() && get_option('graphene_adsense_show_frontpage'))) {graphene_adsense();} ?>

    Thanks for this great theme!

Viewing 1 post (of 1 total)