1

I've created a view, added the specific path and used 'rewrite results' to output the field as a link > path. This gives me the intended HTML view format. When I change to imageflow and one of the images, the behavior changes to open a larger version of the image (imageflow default behavior).

As I see it, it's an imageflow overwrite, and the plugin allows you to set an onClick parameter. I'm trying different values to try to make it link to content. This tends to break imageflow or not link at all.

Any similar experience or suggestions?

Kenny Linsky
  • 1,726
  • 3
  • 17
  • 41

2 Answers2

0

What is the kind of your field? Image, title?

Link the field to its node and then use this code inside the "OnClick Override" settings:

function() {window.open(this.url, '_blank');} // Or _parent to open it normally
TheodorosPloumis
  • 2,396
  • 1
  • 17
  • 31
  • Did you find any solution yet? Did the above help you? – TheodorosPloumis Aug 08 '13 at 17:08
  • The documentation provides the string 'function() { document.location = this.url; }' but doesn't work either. The solution found was to use a different drupal module jQFX. The links work without the need of the onClick statement. – rfmarcelino Aug 18 '13 at 22:40
-1

The solution found was to use a different Drupal module jQFX. The links work without the need of the onClick statement. Unfortunately, the option reflex doesn't seem to work.