>
> As the creator will always be there, your only chance is to modify the
> view template to not display the creator.
>
Thanks, Stephan but how do I do that?
>
> I'm new to this and need pretty clear instructions.
>
Hi Jon,
Ton's solution is a good one and a simple one, but as he says "creator
AND relative date will disappear" from all your tiddlers.
If you just want to remove the creator but NOT the relative date, you can
try the following:
1. To remove the creator from ALL tiddlers, but not the relative date:
- edit "$:/core/ui/ViewTemplate/subtitle" and remove "<$link
to={{!!modifier}}><$view field="modifier"/></$link>".
2. To remove the creator from tiddlers tagged, for instance,
"journal",
- edit "$:/core/ui/ViewTemplate/subtitle" and replace all its content
with this:
- <div class="tw-subtitle">
<$list filter="[is[current]tag[journal]]"><$view field="modified"
format="relativedate"/></$list>
<$list filter="[is[current]!tag[journal]]"><$link
to={{!!modifier}}><$view field="modifier"/></$link> <$view
field="modified"
format="relativedate"/></$list>
</div>
- the first list says that if the tiddler has the tag "journal" then
it shows only the date (modified),
- the second list says that if there is no tag "journal" then it
shows the regular way.
When you update your TW, these changes will be lost. If you don't want
that, you can do the following:
- create a new tiddler called, for instance, "$:/_ViewTemplate/subtitle"
- copy the content of "$:/core/ui/ViewTemplate/subtitle" with the
changes above
- tag this tiddler with "$:/tags/ViewTemplate"
- remove the tag "$:/tags/ViewTemplate"
from "$:/core/ui/ViewTemplate/subtitle"
- save and reload
Cheers,
Alberto
--
You received this message because you are subscribed to the Google Groups
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/groups/opt_out.