I would like to hide the "Original Article" link in teaser views.
Thanks to all for your development
This is a general theming layer issue.
You can do this on the theming layer by implementing a preprocessor for node:
function phptemplate_preprocess_node(&$vars) { //... your code here }
For more information, please refer to the theming guide http://drupal.org/theme-guide/6 and the theme development forum http://drupal.org/forum/3
Comments
Comment #1
alex_b commentedThis is a general theming layer issue.
You can do this on the theming layer by implementing a preprocessor for node:
For more information, please refer to the theming guide http://drupal.org/theme-guide/6 and the theme development forum http://drupal.org/forum/3