First off great module Jancis, it is just what I was looking for.

I am using views 2 with Drupal 6 and would like to list the images individually as a node teasers. However, every time that a image teaser is called the module takes over and does the following:

  1. replaces the view title / page title with the name of a random gallery name of one of the images.
  2. creates the breadcrumb like.....Home » Galleries » Name of the random gallery name.......instead of a view breadcrumb.
  3. the first item in the list (image node teaser) includes the jCarousel and it list the images in the gallery like when it's a regular node in views.
  4. prints all the images in preview mode instead of thumbnail in both views 2 and as a node teaser.

I have tried to modify the code but I have not been successful.

I have tried to bypass this problem using the node-image.tpl.php file but it still does the same thing.

Is there anyway to get to bypass the current display image mode and display as a regular node teaser?

Comments

Jānis Bebrītis’s picture

I had no chance to actually test if it works, but I believe this was caused by altering image node view action.

Line 1081 was
if ($node->type == 'image') {

but changing it to
if (($node->type == 'image') && (!$a3)) {

will fix the problem.

Fix also uploaded into cvs, and new snapshot tar will be available in 4 hrs or so.

Jānis Bebrītis’s picture

Status: Active » Needs review
Jānis Bebrītis’s picture

is is fixed now?

Jānis Bebrītis’s picture

Assigned: Unassigned » Jānis Bebrītis
Status: Needs review » Fixed

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.