Closed (fixed)
Project:
Drupal core
Version:
6.x-dev
Component:
other
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
7 Dec 2006 at 14:02 UTC
Updated:
25 Jun 2007 at 15:33 UTC
Jump to comment: Most recent file
Comments
Comment #1
johninnit commentedand another screenshot of the problem fixed by using bluemarine, so you can see what was missing
Comment #2
Paul Natsuo Kishimoto commented@johninnit - Hi! Can you confirm this is unfixed in 5.0-rc1?
Comment #3
johninnit commentedSorry it looks that way. I tried replacing the chameleon theme files with the new ones from 5rc and it still won't display.
This could of course be because I didn't replace all Drupal's files, only the theme ones. Sorry if that's me being thick!
Conincidentally, I'd moved to using bluemarine as a result of this and then found an incompatibility with FCK Editor module in Bluemarine. *That* bug is now fixed when replacing the theme files with 5rc ones.
Comment #4
hruodland commentedI'm having this problem on 5.0 final. Does anyone know if it's likely to be fixed anytime soon? (I have no idea how to get around it, so I have to decide whether to move to another theme.)
Comment #5
ohzbees commentedI upgraded to Drupal 5.1 and and the "submitted by" information is still missing for Chameleon. However, it is present for all of the other core themes.
Here is the place in the chameleon.theme file where I imagine the problem is (unfortunately I don't see the problem ... yet :-)
$submitted['node_submitted'] = theme_get_setting("toggle_node_info_$node->type") ? array('#title' => t("By !author at @date", array('!author' => theme('username', $node), '@date' => format_date($node->created, 'small')))) : array();Note that all of the taxonomy information and the "read more" link are present.
Comment #6
drupalluver commentedI'm having this problem as well. I'm hoping that someone can find a fix as this is a lovely theme.
Comment #7
davecormier commentedme too. same symptoms. Also works in all other themes. It's a little over my head but I'll look into the pages and see what i can do.
Comment #8
coofercat commentedI've narrowed down the problem a little (with Drupal 5.1). This code:
... is the problem - change the "#title" to 'title' (a slight API inconsistency, I guess?). Like this:
The problem is, this will display:
...which isn't ideal. However, the major emergency for me is over, as my visitors don't get to view user profiles (so the link doesn't appear). It's annoying me though, so I'll keep looking at it.
Comment #9
Rapee commentedThe problem is, that chameleon theme is not using the new theme_links function, that changed a lot. After looking the code, I found an easy solution:
In function chameleon_node:
Change it to this:
function chameleon_comment:
Change it to this:
Thus theme_links will know, that Author's name and date are in HTML already.
Comment #10
coofercat commentedI've just tried this out, and indeed it works perfectly.
Easy when you know how ;-)
Comment #11
drupalluver commentedI just tried it as well! It does work perfectly. Thank you so much!
Comment #12
coofercat commentedJust to try to close this off - Patch (against HEAD) attached.
Comment #13
andrewfn commentedGreat work! tested out perfectly.
Comment #14
drummI committed a slightly modified version with correct code style to 5.
Comment #15
dries commentedI committed this to CVS HEAD. Thanks!
Comment #16
(not verified) commented