When I enable slide show I get

Notice: Undefined variable: admin_links in include() (line 34 of /home7/....../public_html/staging/sites/all/themes/..../templates/views-view.tpl.php)

This relates to which works when this module is not in use.

<div class="<?php print $classes; ?>">
  <?php if ($admin_links): ?>
    <div class="views-admin-links views-hide">
      <?php print $admin_links; ?> 
    </div>
  <?php endif; ?>

I am using 7.x-3.0-rc1

Any help on this is greatly appreciated.

Comments

skessler’s picture

Status: Active » Closed (fixed)

Look in the views-view.tpl.php in your theme directory, as the error message indicates.

There is probably a reference to the variable $admin_links, but this has not been defined. Try prefixing with @ like this:

print @$admin_links

That should take care of your problem.

This is a drupal 7-ism to be notice compliant.

Dave