![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
![[community profile]](https://www.dreamwidth.org/img/silk/identity/community.png)
I'd like to move the filter meta data to the .datetime span - if that's possible, that is. So, instead of '4 December 2010 at 13:00' it should display something like '4 December 2010 at 13:00 in *some filter(s)*'.
What do I have to change in/add to my theme layer? Solution can be found here :)
What do I have to change in/add to my theme layer? Solution can be found here :)
no subject
Date: 2011-01-21 07:35 pm (UTC)Note that class myClass must be at the very top of your layer.
I haven't tested this very thoroughly but one issue I noticed is that it prints the metadata container after entry text when you've got a filter but not other metadata. I don't know how to fix this.
no subject
Date: 2011-01-21 07:45 pm (UTC)no subject
Date: 2011-01-21 07:49 pm (UTC)You're welcome. Also, I've updated the layer to fix the issue I mentioned in my previous comment.
no subject
Date: 2011-01-21 09:09 pm (UTC)no subject
Date: 2011-01-23 10:36 am (UTC)I also figured out how to archive the wanted effect with your code; I just needed to change the order in 'function Page::print_entry(Entry e) {}'
Instead of
$e->print_subject();
$mc->lay_print_metadata_groups($e);
"""
$e->print_metatypes();
$e->print_time();
I use
$e->print_subject();
"""
$e->print_metatypes();
$e->print_time();
$mc->lay_print_metadata_groups($e);
Thanks again!
no subject
Date: 2011-01-23 10:42 am (UTC)Edit: or PM me with the link if you don't want it out there...
no subject
Date: 2011-01-23 10:46 am (UTC)http://www.dreamwidth.org/customize/advanced/layerbrowse?id=128149
no subject
Date: 2011-01-23 10:54 am (UTC)Here's mine: http://www.dreamwidth.org/customize/advanced/layersource?id=180499
I'm gonna try and see if the code fits in a comment so that it doesn't get lost again.
no subject
Date: 2011-01-23 10:56 am (UTC)Code
Date: 2011-01-23 11:02 am (UTC)