How do I remove the All Shouts link at the bottom? Thanks.

Comments

tanfastic006’s picture

Remove the line

$output .= l(t('All Shouts'), 'shoutbox');
at line number 853. in /shoutbox/shoutbox.module

its after the lines

$js_settings = array(
    'showAmount' => $show_amount,
    // Convert to milliseconds.
    'refreshDelay' => (1000 * variable_get('shoutbox_refresh', 0)),
    'ascending' => $shoutbox_ascending,
    'shownAmount' => $shoutbox_posts_data['count'],
    'defaultNick' => $default_nick,
    'defaultMsg' => $default_msg,
    'defaultUrl' => $default_url,
    'refreshPath' => url('shoutbox/js/view'),
  );

  drupal_add_js(array('shoutbox' => $js_settings), 'setting');

  $output .= l(t('All Shouts'), 'shoutbox');
vitalblue’s picture

Issue summary: View changes
Status: Active » Closed (outdated)