I'm not sure if I am missing something but I do not see the contextual links when hovering over blocks and other items. Is this not available with this theme?

Comments

gtsopour’s picture

Component: User interface » Code
Assigned: Unassigned » gtsopour
Category: support » bug
Priority: Normal » Major
Issue tags: +Bluemasters theme, +bluemasters

I changed this issue to bug report from support request. Thanks stiffler for your mention.

gtsopour’s picture

Version: 7.x-1.1 » 7.x-1.2
gtsopour’s picture

Status: Active » Closed (fixed)

First of all stiffler, i would like to thank you for your feedback. You are absolutely right with your mention. This issue caused from the code in block.tpl.php file. Just replace all block.tpl.php content

<div id="block-<?php print $block->module .'-'. $block->delta; ?>" class="clear-block block block-<?php print $block->module ?>">
<?php if (!empty($block->subject)): ?>
<h2><?php print $block->subject ?></h2>
<?php endif;?>
<div class="content"><?php print $content ?></div>
</div>

with the following code

<div id="<?php print $block_html_id; ?>" class="<?php print $classes; ?>"<?php print $attributes; ?>>

<?php print render($title_prefix); ?>
<?php if ($block->subject): ?>
<h2<?php print $title_attributes; ?>><?php print $block->subject ?></h2>
<?php endif;?>
<?php print render($title_suffix); ?>

<div class="content"<?php print $content_attributes; ?>>
<?php print $content ?>
</div>
</div>

All changes are committed and will be included in next Bluemasters release 7.x-1.3. Thank you for understanding.