I'd like to remove the 'email this page' from the links area and instead place it in some block code so I can control the placement and appearance.

Any help with this is appreciated.

Comments

manoloka’s picture

I don't know about removing the link but I've used this with succes to create a block, simply add this code and allow php into a new block

if (arg(0) == 'node' && is_numeric(arg(1))) { // we're in a full node view
  $path = 'forward/' . arg(1); // make a Drupal path to the forward page
  return l('Forward this page', $path); // l() should also handle any Drupal path aliasing automatically! :)
}

It worked for me :-)

markhope’s picture

A reply after a year!
I'll keep this in mind for future.

Thanks manoloka.

seanr’s picture

Status: Active » Closed (fixed)