• I’m using a medical them downloaded from wp-spider. Everything works fine, but there is a Google banner ad showing up on each post/page which I don’t want…must have come embeded with the theme. I found some code on the singlepost.php page that looks like this:
    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>

    <div class=”navigation”>
    <div class=”alignleft”><?php previous_post_link(‘« %link’) ?></div>
    <div class=”alignright”><?php next_post_link(‘%link »’) ?></div>
    </div>
    <div class=”post” id=”post-<?php the_ID(); ?>”>
    <h2>” rel=”bookmark” title=”Permanent Link: <?php the_title_attribute(); ?>”><?php the_title(); ?></h2>

    <div class=”entry”>
    <!– Google Ad Start –>
    <?php include (TEMPLATEPATH . ‘/468×60.php’); ?>
    <!– Google Ad End –>

    I tried removing it, but the ads were still there when revisiting the site. Could anyone please advise how to remove these ads. Here’s my site URL:
    http://panicaayremedy.com

Viewing 4 replies - 1 through 4 (of 4 total)
  • <!-- Google Ad Start -->
    <?php include (TEMPLATEPATH . '/468x60.php'); ?>
    <!-- Google Ad End -->

    looks like the code you need to remove but you may have to make the same edit in multiple files in your theme to remove all of the ads.

    Also remember to press CTRL and F5 simultaneously when viewing an updated page/site. Or try emptying your browser cache. This should ensure that your web browser fetches a fresh copy of the page rather than serving up an out-dated copy from your own cache.

    Thread Starter rhythim

    (@rhythim)

    Thanks esmi, worked when I also deleted it from Pages.php. If I could grouble you to address 2 other questions, same site:

    • how to change the light gray background color behind the main content body and sidebar, can’t find it in stylesheet.css

    • how to choose a different font or font size for same main content

    • how to make font edits or place one line under the other in the Post Title, which of course, cannot be accessed through the content editor

    I can’t seem to find at site at http://panicaayremedy.com

    Thread Starter rhythim

    (@rhythim)

    sorry, that should have been http://panicawayremedy.com, dropped the “w”. Anyway, would appreciate hearing form you again

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Removing embeded theme Google Feedback Ads’ is closed to new replies.