Closed (fixed)
Project:
PROG Gallery
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Support request
Assigned:
Reporter:
Created:
1 Mar 2009 at 23:05 UTC
Updated:
27 Mar 2009 at 07:00 UTC
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:
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
Comment #1
Jānis Bebrītis commentedI 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.
Comment #2
Jānis Bebrītis commentedComment #3
Jānis Bebrītis commentedis is fixed now?
Comment #4
Jānis Bebrītis commented