• Hey I have a quick question.. I have a line of text appearing on all of my “pages”.. its the same line and I have no clue on how to get rid of it!

    Id appreciate if anyone could tell me how to find that line and get rid of it so its not on every page!

    heres a link so you can see what im talking about: https://www.apeaceofcake317.com/home/?page_id=2

    the line of text is: We can provide you with entertainment that will make your party special. Please choose from our variety of entertainers.

    and it appears on top of every page..

    thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hey,

    Just open the page.php file of your template with any text editor and look for that text (use ctrl+f to search for it).
    Then just delete it ??

    If you face any problems then just post the whole code of the page.php file here and we’ll point out what to remove exactly.

    Good Luck!

    Thread Starter DakiDeZain

    (@dakidezain)

    I dont see that line anywhere in here though ??

    <?php get_header(); ?>

    <div id=”content”>

    <div id=”contentleft”>

    <div class=”postarea”>

    <p><?php echo category_description(3); ?></p>

    <?php include(TEMPLATEPATH.”/breadcrumb.php”);?>

    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>

    <h1><?php the_title(); ?></h1>

    <?php the_content(__(‘Read more’));?><div style=”clear:both;”></div>

    <?php endwhile; else: ?>

    <p><?php _e(‘Sorry, no posts matched your criteria.’); ?></p><?php endif; ?>

    </div>

    </div>

    <?php include(TEMPLATEPATH.”/sidebar.php”);?>

    </div>

    <!– The main column ends –>

    <?php get_footer(); ?>

    Here is the like you should remove:
    <p><?php echo category_description(3); ?></p>

    its in fact your category’s description ??

    BTW if anyone has a good idea for a WP plugin, please contact me.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to get rid of text that appears on EVERY page!’ is closed to new replies.