Anyone find a solution? Great module otherwise!

Comments

conortm’s picture

Assigned: Unassigned » conortm
Status: Active » Postponed (maintainer needs more info)

Denis,

Currently, Admin:hover is compatible with themes that do the following: provide node and block templates, the id attributes of whose containing divs are of the format node-$nid and block-$module-$delta, respectively... I am working on eliminating this condition...

Have you modified the Marinelli theme in any way? I have tested the default Marinelli theme, and Admin:hover works... Are there any more details you could provide?

Thanks!

spiffyd’s picture

I did a fresh install of 6.6 and the latest marinelli theme - admin:mod didn't work on any of marinelli's theme types.

Tried clearing local and performance caches.

Are you sure your mode worked for marinelli theme? I am using your 6.x dev version BTW, not the 5.x versions...

conortm’s picture

Status: Postponed (maintainer needs more info) » Active

Denis,

My apologies, I misread your post and thought you meant Minelli... My bad! Unfortunately, until further development is done on Admin:hover, you will need to alter the following files in the Minelli theme:

node.tpl.php - alter the containing div's opening tag to be the following:

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

block.tpl.php - alter the containing div's opening tag to be the following:

<div id="block-<?php print $block->module .'-'. $block->delta; ?>" class="block defaultblock">

Please let me know if that works... I know altering themes is far from an ideal solution, but until I fix the deeper issue, this will have to do. Thanks for your patience, and I hope this works for you.

spiffyd’s picture

Status: Active » Fixed

Yes, Minelli and Marinelli sounds similar so it can be confusing! :P

Your tips allowed me to fix the issue... basically Marinelli theme did not have the IDs specified for both node and block phps so adding them in resolved the issue.

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.