0
Welcome Guest! Login
0 items Join Now

Removing child board links

  • Removing child board links

    Posted 17 years 7 months ago
    • i have a lot of forums with sub catorgorys

      but as i have a lot all the "Child board" links are rather ugly

      does anyone know how to remove them.


      thanks in advance

      RL
    • Joomla Extensions - www.ninjoomla.com
  • Re: Removing child board links

    Posted 17 years 7 months ago
    • Okay so im guessing no one knows?

      just to update you guys on what i have been up to

      i found this
      // Show the "Child Boards: ". (there's a link_children but we're going to bold the new ones...)
      if (!empty($board))
      {
      // Sort the links into an array with new boards bold so it can be imploded.
      $children = array();
      /* Each child in each board's children has:
      id, name, description, new (is it new?), topics (#), posts (#), href, link, and last_post. */
      foreach ($board as $child)
      {
      $child = '<a href="' . $child . '" title="' . ($child ? $txt[333] : $txt[334]) . ' (' . $txt[330] . ': ' . $child . ', ' . $txt[21] . ': ' . $child . ')">' . $child . '</a>';
      $children[] = $child ? '<b>' . $child . '</b>' : $child;
      }

      echo '
      <tr>
      <td colspan="3" class="windowbg', !empty($settings) ? '3' : '', '">
      <span class="smalltext"><b>', $txt, '</b>: ', implode(', ', $children), '</span>
      </td>
      </tr>';
      }

      in the BoardIndex.template.php.

      now if i remove the above text, my childboards disapear, but it completely ruins the structure of my board.
      images move to the left,
      catorgorys stretch.

      any ideas are appreciated

      thanks

      RL
    • Joomla Extensions - www.ninjoomla.com

Time to create page: 0.066 seconds