Closed (won't fix)
Project:
Block Title Link [D7]
Version:
6.x-1.3
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
27 Nov 2009 at 16:33 UTC
Updated:
16 Dec 2010 at 21:06 UTC
I have Block Title link working with blocks and it is fine when assigned to regions in the template, but when a block is added to region in a panel the title is not a link.
Comments
Comment #1
ngmaloney commentedCould you verify that the block template being used by the panel does have the appropriate template variable changes needed by the module? See the example_block.tpl.php for reference.
Comment #2
neclimdulPanels doesn't use the normal block theming for blocks. Its sort of complicated but it uses the block content_type provided by ctools to "render" the block into more reasonable elements(mostly just to the block object after op 'view') and then panels-pane.tpl.php for the actual theming. I don't know if its possible that this could support this by preprocessing panels_pane and sniffing for the content type or something but that'd be my guess on how to accomplish it.
Comment #3
ngmaloney commentedThanks for the additional info. I'll take a look and see what is possible.
Comment #4
geek-merlinsubscribing
in my understanding of drupal theming, using preprocess functions is more appropriate for this module as theming functions!
Comment #5
ngmaloney commentedThis appears to be more of a function of how CTools renders blocks. If anyone could provide some code to help with a patch I'd be happy to take a look.