Which part of code i have to copy and where i have to insert it, to show thumbnails above AND under the image?

Comments

AlexisWilke’s picture

In gallerix.module

function gallerix_view($node, $teaser = FALSE, $page = FALSE) {
  [...]

    $content .= theme('gallerix_message_box');
    $content .= '<div id="gallerix">';
      $content .= '<div id="gallerix-viewer" ' . $hide_viewer . '>' . "\n";
        $content .= theme('gallerix_components', $components);
      $content .= "</div>\n"; // end div gallerix-viewer
      $content .= '<div id="gallerix-grid" ' . $hide_grid . '>';
        $content .= theme('gallerix_grid', $node);
      $content .= '</div>'; // end div gallerix-grid
    $content .= '</div>'; // end div gallerix

  [...]
}

And a theme() call would do good for that one! 8-)

Thank you.
Alexis