You're using node.tpl.hpp to change the syling of twitte_search_feed nodes. I'm referring to this code:
function twitter_search_feeds_theme_registry_alter(&$theme_registry) {
$theme_registry['node']['template'] = 'node';
$theme_registry['node']['path'] = drupal_get_path('module', 'twitter_search_feeds');
$theme_registry['node']['theme path'] = drupal_get_path('module', 'twitter_search_feeds');
$theme_registry['node']['theme paths'] = Array();
}
It's unnecessary. It overrides the normal node.tpl.php and causes ALL of my nodes to display that way. If anything you need to be adding ode-activitystream.tpl.php instead of node.tpl.php. Or better yet, add a hook for ode-activitystream-twitter-search-item.tpl.php and have it only modify your items.
Comments
Comment #1
pflame commentedHi auzigog,
What you said is correct. I noticed this is unnecessary but couldn't find time to work on this module. Will remove it.
Thanks
Comment #2
pflame commentedI removed node.tpl.php overwriting from the module. It will take 24 hours to update the development release.
Comment #3
pflame commented