Here's the situation. I am using Drupal 4.7.3, with a Customized PHP Template. I have taken over a project someone else created and customized. I have no way of reaching that person.

On my home page (I'd give you a link but it's a corporate intranet) I am using a two column panel with views. The top view is the current top story displayed as a block. However in the view settings for "block" I have "full node" selected. I also have the post settings set to unlimited trimming. No matter the setting, I continue ti have the "more" link visable at the bottom of the view.

The code in my node.tpl.php file looks like this:

  <div class="content">
    <?php print $content; ?>
    <?php if (!$page): ?>
      <a href="<?php print $node_url ?>">More...</a>
    <?php endif; ?>
  </div>

I think it thinks if you are not on the exact node page it should print the tag. Any ideas? Please help. It's driving me crazy one node at a time.

Comments

Nickerbockerbean’s picture

does anyone out there have any idea about this? It's still driving me nuts.

cgjohnson’s picture

Me too if there's an answer. I did see the Read MOre Tweak module, but it doesn't seem to remove it. thanks.

pow’s picture

Via CSS?!

.more-link {
display:none;
}

or

#yourdiv .more-link {
display:none;
}

greetings,

pow