first I applied the patch here

http://drupal.org/node/1135958

under #4

I set it up correctly, created nodes, views, add images, titles, links, even watched videos, but the images still do not show up, neither do titles and links

Here is the code of the view

SELECT node.nid AS nid,
node_data_field_link.field_link_value AS node_data_field_link_field_link_value,
node_data_field_link.field_link_format AS node_data_field_link_field_link_format,
node.language AS node_language,
node.type AS node_type,
node.vid AS node_vid,
node_data_field_slika.field_slika_fid AS node_data_field_slika_field_slika_fid,
node_data_field_slika.field_slika_list AS node_data_field_slika_field_slika_list,
node_data_field_slika.field_slika_data AS node_data_field_slika_field_slika_data,
node.title AS node_title
FROM node node
LEFT JOIN content_field_link node_data_field_link ON node.vid = node_data_field_link.vid
LEFT JOIN content_field_slika node_data_field_slika ON node.vid = node_data_field_slika.vid
WHERE (node.type in ('nivo_slider')) AND (node.status <> 0 OR (node.uid = ***CURRENT_USER*** AND ***CURRENT_USER*** <> 0) OR ***ADMINISTER_NODES*** = 1)

can somebody tell me where is the problem?

Comments

fender-dupe’s picture

Ok i figured it out more but now only the first image shows up, and none of the rest.

So when i publish the sslider only images 1 is displayed, other images are not

Maybe i messed up the patch

here is my patched file

/**
 * @file
 *  Views Nivo Slider theme wrapper.
 *
 * @ingroup views_templates
 */
print $classes; ">
if ($admin_links):

endif;
if ($header):

print $header;

endif;

if ($exposed):

print $exposed;

endif;

if ($attachment_before):

print $attachment_before;

endif;

if($rows):

print $views_nivo_slider_id " class="views-nivo-slider clear-block">
foreach ($rows as $row):
print $row
endforeach;

if(count($view->_vns_captions)):
foreach($view->_vns_captions as $vns_id => $vns_caption):

print $vns_id " class="nivo-html-caption">
print $vns_caption;

endforeach;
endif;

elseif($empty):

print $empty;

endif;

if ($pager):
print $pager;
endif;

if ($attachment_after):

print $attachment_after;

endif;

if ($more):
print $more;
endif;

if ($footer):

endif;

if ($feed_icon):

print $feed_icon;

endif;

ckng’s picture

Category: feature » support
Priority: Critical » Normal
Status: Active » Postponed (maintainer needs more info)

Grab the latest dev tarball if you are not sure if you patch correctly, then report back here.

Just saying image does not show up will not help to troubleshoot your problem. Check the drupal log, webserver log if there are any error. Attaching your views export is better than SQL, which tell nothing unless it returns empty field.