Skip to main content

Remove the image assist icon from Drupal textareas

An article from ComputerMinds - Building with Drupal in the UK since 2005
20th Jan 2008

Mike Dixon

Senior Mind
Hey, you seem to look at this article a lot! Why not Bookmark this article so you can find it easily in the future?

This small theme override will allow you to select which Drupal textareas the image assist icon will appear on


/**
 * Theme for adding an image link underneath textareas
 */
function phptemplate_img_assist_textarea_link($element, $link) {
  if ($element['#id']=='edit-body'){
    return theme_img_assist_textarea_link($element, $link);
  }
}

The above code will limit the icon to appearing on only the node edit body fields, you can add more ids as required

Hi, thanks for reading

ComputerMinds are the UK’s Drupal specialists with offices in Bristol and Coventry. We offer a range of Drupal services including Consultancy, Development, Training and Support. Whatever your Drupal problem, we can help.