• WordPress 3.0.1
    Theme Name: Oulipo
    Site: https://www.immediatecontributions.com

    Please pardon my ignorance – I’m a newbie.
    My top line (h1?), on page one, “Feeling some financial pain these days?” is behaving like a link and it doesn’t need to.
    How and where to disable this troublesome annoyance – especially for unsuspecting visitors?

Viewing 1 replies (of 1 total)
  • make a backup copy of your theme files before editing

    edit index.php of your theme (probably), and find

    <div id="entry_content">
    
    				<h2><a href="<?php ..... ?>" rel="bookmark" title="Permanent Link to <?php ..... ?>"><?php the_title(); ?></a></h2>
    
    				<div class="entry">

    or something very similar.

    edit it to:

    <div id="entry_content">
    
    				<h2><?php the_title(); ?></h2>
    
    				<div class="entry">

    just be aware that this change may effect other pages as well.

Viewing 1 replies (of 1 total)
  • The topic ‘Disable link on page 1 / h1 of Oulipo Theme’ is closed to new replies.