Hello,

it seems that contextual links are not working properly. At least I cant get them to work with this great theme. Are they disabled somewhere?

Comments

a.sopko’s picture

Hi,
Many of them work well, I saw bug report only for contextual links-->taxonomy ID

yshido’s picture

Thanks for the fast answer. Will there be a fix for this issue, cause configuring sidebarblocks without having a contextual link is pain in the but :)

a.sopko’s picture

Check Taming the Beast: Learn Views with NodeOne there is a good explanation how contextual filters works

gtsopour’s picture

Title: Contextual links? » Contextual links don't appear to blocks
Assigned: Unassigned » gtsopour
Category: support » bug
Priority: Normal » Major
Issue tags: +corporate, +Corporate Theme, +Corporate Clean Theme
gtsopour’s picture

Status: Active » Closed (fixed)

Hello yshido and a.sopko,

First of all, 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 CorporateClean release 7.x-1.1. Thank you for understanding.