There are no page level contextual links (such as on a view page) being shown. This is due to the requirement of rendering the `$title_suffix` variable in a template file.

Aurora suggests using the http://drupal.org/project/blockify module so it doesn't render any of `$title_prefix`, `$title`, and `$title_suffix`.

I was able to fix it by putting print render($title_suffix); in the region where I have my title block (supplied by blockify). This is obviously not ideal.

I'm not sure what the permanent solution would be. If this is something blockify should do, it can be moved there. However I'm not sure how a block could get/render that correctly. My guess is that if it's rendered as part of the block the contextual links would show up with the block level actions.

Comments

iamcarrico’s picture

Status: Active » Closed (won't fix)

We suggest putting the blocks with blockify into the page--- thus removing the need for that PHP code in general. There are more examples on blockify's page on how to fully do this.

We have no intention of adding support for this, as we recommend using Blockify. However, if you want it in your own sub-theme... you can have it just by adding a different .tpl.php in your own sub-theme.

Happy theming!

rocketeerbkw’s picture

Issue summary: View changes

Thanks for the quick response!

I am currently using blockify to display the page title as a block, which is why I noticed the missing contextual links. Perhaps it's worth noting that using blockify isn't a feature complete replacement?