Project:Admin:hover
Version:6.x-1.0
Component:Code
Category:bug report
Priority:normal
Assigned:conortm
Status:postponed (maintainer needs more info)

Issue Summary

I have just installed as instruction and as normal in my Drupal 6.15 and javascript on. However, there is no hover menu displaying at blocks or nodes at all in any pages after enabled. Is it a problem? Thanks!

Comments

#1

Assigned to:Anonymous» conortm
Status:active» postponed (maintainer needs more info)

Hello ycwjjjj,

Could you provide a little more info? What theme are you using? What browser are you using? What, if any, javascript errors are you getting? Have you tested (on a development site) the latest 6.x dev version?

Thanks for reporting this, and please let me know answers to the above.

-Conor

#2

I have tried with latest dev and summertime theme, no links showing. also have popups API installed.

#3

Aah in my case it was CSS aggregation.... cleared the cache and they appeared!

#4

As stated on the front page:

This module currently works with themes that implement node templates with containing divs whose id attributes are of the pattern "node-%nid", where %nid is the node's numeric nid

So, in your theme's node.tpl.php, the opening container should be something like the following:

<div id="node-<?php print $node->nid; ?>" class="node<?php if ($sticky) { print " sticky"; } ?><?php if (!$status) { print " node-unpublished"; } ?>">

Note the id="node-<?php print $node->nid; ?>".

nobody click here