It appears as if this theme breaks certain critical functions when using it with image output created by views using imagecache. This theme defaults to the original URL for the image instead of using the imagecache created url. My tests used cropping and resized images that were presented through a views output in panels. It also appears that the rest of the views and imagecache funtionality that would set the new image up as a link when setting the link to node function, does not work either. When using this theme to render views with imagecache enabled symptoms are that the original width and height of the image are used instead of the cropped and resized image. Again, the origional url is used instead of the imagecache created url. All other themes using the same views and imagecache settings work. Any ideas why this may be happening?

Comments

porkypun’s picture

Priority: Major » Critical

Hey I am having the same issue. Has anyone helped you? This is affecting my site.

rowbeast’s picture

I just notices this is occurring for me as well, my difference being its for the 7.2.x-dev version of the theme as well.
Any thoughts?

lvto2000’s picture

Ok so I fixed the symptom but the problem is really not fixed. It appears as if the preprossessing code in the mobile_jquery/includes/mobile_jquery.user.inc file is trying to handle all image/photo urls. I cant figure out how or why but I changed the name of the following function so it would not be called.

WAS:

function mobile_jquery_preprocess_user_picture(&$variables)

CHANGED TO:

function mobile_jquery_preprocess_user_picture-NOCALL(&$variables)

This allowed all of my photos to now use the proper imagecache urls for views generated images. I also turned off the url handling/hashing option in the jquery-ui configuraiton. I dont think this last step is related to the imagecache issue but it helped me with another problem I was having with this theme. This issue still needs to be fixed as I am sure I have broken some other function in this theme. So far it works for me now but all of the files in the includes folders seem to be resetting critical variables for other modules and breaking them. MEDIAFRONT is another one that this theme breaks. I have figured out th call that breaks it, but thats another issue.

Hope this helps in the short term.