By steven9 on
Hi guys,
I am trying to change "more" at the bottom of "New forum topics" block in Drupal 6. Below is the code from forum.module . How can I do it?
if (!empty($content)) {
$block['subject'] = $title;
$block['content'] = $content . theme('more_link', url('node'), t('Read the latest forum topics.'));
return $block;
}
Steven
Comments
theming more link is possible
use this function http://api.drupal.org/api/function/theme_more_link/6
you need to write in theme template.php file
thank you so much. That did
thank you so much. That did the trick.