Problem/Motivation

Unable to override the template using my theme.

Proposed resolution

Line 302 of sco_node.module reads:

    'template' => 'sco_node',

I believe the underscore prevents the module from loading my theme override at 'sites/all/themes/[my_theme]/templates/sco-node.tpl.php'

Changing it to dash corrects the problem and loads my override:

    'template' => 'sco-node',

Remaining tasks

This would be my first patch. Not sure when I'll get around to it.

CommentFileSizeAuthor
#2 templateoverride-2818547.patch339 bytesgritchie
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

gritchie created an issue. See original summary.

gritchie’s picture

FileSize
339 bytes

Here's the patch...

John Franklin’s picture

The tpl/sco_node.tpl.php file needs to be renamed, too.