Discussion:
[tw] How can I hide the author's name in all tiddlers?
Tom
2018-03-07 12:21:49 UTC
Permalink
Since I'm the only author, it's wasted space, and I'd like to know how to
hide it.

The closest I could find was this on an old post, but it's not enough for
me to work with.

.tiddler .subtitle {

display: none;

}
--
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 tiddlywiki+***@googlegroups.com.
To post to this group, send email to ***@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/4700b648-e515-47a5-9386-5c366b0bfabe%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Mat
2018-03-07 13:46:39 UTC
Permalink
You can edit $:/core/ui/ViewTemplate/subtitle

but, probably better, do what you started with CSS like so

title: ...
tags: $:/tags/Stylesheet
text:
.tc-subtitle .tc-tiddlylink {display:none;}

<:-)
--
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 tiddlywiki+***@googlegroups.com.
To post to this group, send email to ***@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/b7a0d698-6aea-422d-a45d-77d52e5a9ebc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Tom Hales
2018-03-09 11:30:33 UTC
Permalink
I've sat down and tried a few things and tried looking at the
documentation, but I'm lost.

I even tried making a tiddler called "..."

Where should I use the CSS?
How does the Stylesheet tag come into it?
Post by Mat
You can edit $:/core/ui/ViewTemplate/subtitle
but, probably better, do what you started with CSS like so
title: ...
tags: $:/tags/Stylesheet
.tc-subtitle .tc-tiddlylink {display:none;}
<:-)
--
You received this message because you are subscribed to a topic in the
Google Groups "TiddlyWiki" group.
To unsubscribe from this topic, visit
https://groups.google.com/d/topic/tiddlywiki/m81fjaqtWj0/unsubscribe.
To unsubscribe from this group and all its topics, send an email to
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit
https://groups.google.com/d/msgid/tiddlywiki/b7a0d698-6aea-422d-a45d-77d52e5a9ebc%40googlegroups.com
<https://groups.google.com/d/msgid/tiddlywiki/b7a0d698-6aea-422d-a45d-77d52e5a9ebc%40googlegroups.com?utm_medium=email&utm_source=footer>
.
For more options, visit https://groups.google.com/d/optout.
--
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 tiddlywiki+***@googlegroups.com.
To post to this group, send email to ***@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/CAKLXyxNEZY4Nq_16qjKS0dDVqR5nv3PExisHd64e021tDDxyVg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.
Jed Carty
2018-03-09 11:54:56 UTC
Permalink
Create a new tiddler, the name can be anything you want.

Give the tiddler the tag $:/tags/Stylesheet

in the text field of the tiddler put:

.tc-subtitle .tc-tiddlylink {display:none;}

save the tiddler and it should be done.
--
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 tiddlywiki+***@googlegroups.com.
To post to this group, send email to ***@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/7ce6aa20-8650-4ac6-939c-7b8ff0caf0a8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Tom Hales
2018-03-09 13:00:48 UTC
Permalink
Ahh, tagging it includes it in the stylesheet!

That makes sense!

Thank you Jed.
Post by Jed Carty
Create a new tiddler, the name can be anything you want.
Give the tiddler the tag $:/tags/Stylesheet
.tc-subtitle .tc-tiddlylink {display:none;}
save the tiddler and it should be done.
--
You received this message because you are subscribed to a topic in the
Google Groups "TiddlyWiki" group.
To unsubscribe from this topic, visit
https://groups.google.com/d/topic/tiddlywiki/m81fjaqtWj0/unsubscribe.
To unsubscribe from this group and all its topics, send an email to
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit
https://groups.google.com/d/msgid/tiddlywiki/7ce6aa20-8650-4ac6-939c-7b8ff0caf0a8%40googlegroups.com
<https://groups.google.com/d/msgid/tiddlywiki/7ce6aa20-8650-4ac6-939c-7b8ff0caf0a8%40googlegroups.com?utm_medium=email&utm_source=footer>
.
For more options, visit https://groups.google.com/d/optout.
--
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 tiddlywiki+***@googlegroups.com.
To post to this group, send email to ***@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/CAKLXyxPaGq3D5%2B9cqgb5%2BjudgBbjc-0iS8B5VD4_K_jJfM_uLQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.
Tom Hales
2018-03-09 13:29:32 UTC
Permalink
And thank you Mat for the first answer.

The documentation mentions moving tags above titles. Is it easy to move the
date the tiddler was last edited to the right of the tags?
Post by Tom Hales
Ahh, tagging it includes it in the stylesheet!
That makes sense!
Thank you Jed.
Post by Jed Carty
Create a new tiddler, the name can be anything you want.
Give the tiddler the tag $:/tags/Stylesheet
.tc-subtitle .tc-tiddlylink {display:none;}
save the tiddler and it should be done.
--
You received this message because you are subscribed to a topic in the
Google Groups "TiddlyWiki" group.
To unsubscribe from this topic, visit
https://groups.google.com/d/topic/tiddlywiki/m81fjaqtWj0/unsubscribe.
To unsubscribe from this group and all its topics, send an email to
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit
https://groups.google.com/d/msgid/tiddlywiki/7ce6aa20-8650-4ac6-939c-7b8ff0caf0a8%40googlegroups.com
<https://groups.google.com/d/msgid/tiddlywiki/7ce6aa20-8650-4ac6-939c-7b8ff0caf0a8%40googlegroups.com?utm_medium=email&utm_source=footer>
.
For more options, visit https://groups.google.com/d/optout.
--
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 tiddlywiki+***@googlegroups.com.
To post to this group, send email to ***@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/CAKLXyxNF8zofJQC6jTnhPLuKPuKwjzyTiR%2BPkE6tNceUU6O4zw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.
AlexHough
2018-03-10 20:02:59 UTC
Permalink
You could remove the tag $:/tags/ViewTemplate from
$:/core/ui/ViewTemplate/subtitle

this option could be one which opens up a learning route into SystemTags.

I think it would be good to create all the SystemTags and have a
description of what they do in their body.
Then, in SystemTags, the list can be created programatically.

The current alphabetical ordering is not so useful for newcomers. I think
it could be better to group the View and Edit templates together with the
PageTemplate -- perhaps in a tiddler explaining the role of SystemTags in
showing and hiding.

I use the {display:none} method myself - only because it is easier to do
that than find the ViewTemplate Tag on a copy of TW.com or the prerelease:
I always use a prerelease as all the documentation is self contained.




Alex
Post by Tom Hales
And thank you Mat for the first answer.
The documentation mentions moving tags above titles. Is it easy to move
the date the tiddler was last edited to the right of the tags?
Post by Tom Hales
Ahh, tagging it includes it in the stylesheet!
That makes sense!
Thank you Jed.
Post by Jed Carty
Create a new tiddler, the name can be anything you want.
Give the tiddler the tag $:/tags/Stylesheet
.tc-subtitle .tc-tiddlylink {display:none;}
save the tiddler and it should be done.
--
You received this message because you are subscribed to a topic in the
Google Groups "TiddlyWiki" group.
To unsubscribe from this topic, visit
https://groups.google.com/d/topic/tiddlywiki/m81fjaqtWj0/unsubscribe.
To unsubscribe from this group and all its topics, send an email to
<javascript:>.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit
https://groups.google.com/d/msgid/tiddlywiki/7ce6aa20-8650-4ac6-939c-7b8ff0caf0a8%40googlegroups.com
<https://groups.google.com/d/msgid/tiddlywiki/7ce6aa20-8650-4ac6-939c-7b8ff0caf0a8%40googlegroups.com?utm_medium=email&utm_source=footer>
.
For more options, visit https://groups.google.com/d/optout.
--
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 tiddlywiki+***@googlegroups.com.
To post to this group, send email to ***@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/1a7091fc-ae35-4c6d-9ea1-c81074081573%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Steven Schneider
2018-03-13 17:21:04 UTC
Permalink
Check out http://designwritestudio.com/#Display, which provides buttons to
turn on/off tiddler titles, subtitles and tags, and conveniently lists
templates. (Written by Hegart, I think, who used to inhabit this group, and
was one of the participants in DesignWriteStudio a few years back).

//steve.
Post by Tom Hales
Ahh, tagging it includes it in the stylesheet!
That makes sense!
Thank you Jed.
Post by Jed Carty
Create a new tiddler, the name can be anything you want.
Give the tiddler the tag $:/tags/Stylesheet
.tc-subtitle .tc-tiddlylink {display:none;}
save the tiddler and it should be done.
--
You received this message because you are subscribed to a topic in the
Google Groups "TiddlyWiki" group.
To unsubscribe from this topic, visit
https://groups.google.com/d/topic/tiddlywiki/m81fjaqtWj0/unsubscribe.
To unsubscribe from this group and all its topics, send an email to
<javascript:>.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit
https://groups.google.com/d/msgid/tiddlywiki/7ce6aa20-8650-4ac6-939c-7b8ff0caf0a8%40googlegroups.com
<https://groups.google.com/d/msgid/tiddlywiki/7ce6aa20-8650-4ac6-939c-7b8ff0caf0a8%40googlegroups.com?utm_medium=email&utm_source=footer>
.
For more options, visit https://groups.google.com/d/optout.
--
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 tiddlywiki+***@googlegroups.com.
To post to this group, send email to ***@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/0a2b1d2e-edbe-4d55-8c80-38d417229e92%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Tom Hales
2018-03-17 09:23:19 UTC
Permalink
Thank you Alex and Steven, both very helpful answers!
Post by Steven Schneider
Check out http://designwritestudio.com/#Display, which provides buttons
to turn on/off tiddler titles, subtitles and tags, and conveniently lists
templates. (Written by Hegart, I think, who used to inhabit this group, and
was one of the participants in DesignWriteStudio a few years back).
//steve.
Post by Tom Hales
Ahh, tagging it includes it in the stylesheet!
That makes sense!
Thank you Jed.
Create a new tiddler, the name can be anything you want.
Post by Tom Hales
Post by Jed Carty
Give the tiddler the tag $:/tags/Stylesheet
.tc-subtitle .tc-tiddlylink {display:none;}
save the tiddler and it should be done.
--
You received this message because you are subscribed to a topic in the
Google Groups "TiddlyWiki" group.
To unsubscribe from this topic, visit
https://groups.google.com/d/topic/tiddlywiki/m81fjaqtWj0/unsubscribe.
To unsubscribe from this group and all its topics, send an email to
Post by Jed Carty
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit
https://groups.google.com/d/msgid/tiddlywiki/7ce6aa20-8650-4ac6-939c-7b8ff0caf0a8%40googlegroups.com
<https://groups.google.com/d/msgid/tiddlywiki/7ce6aa20-8650-4ac6-939c-7b8ff0caf0a8%40googlegroups.com?utm_medium=email&utm_source=footer>
.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to a topic in the
Google Groups "TiddlyWiki" group.
To unsubscribe from this topic, visit
https://groups.google.com/d/topic/tiddlywiki/m81fjaqtWj0/unsubscribe.
To unsubscribe from this group and all its topics, send an email to
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit
https://groups.google.com/d/msgid/tiddlywiki/0a2b1d2e-edbe-4d55-8c80-38d417229e92%40googlegroups.com
<https://groups.google.com/d/msgid/tiddlywiki/0a2b1d2e-edbe-4d55-8c80-38d417229e92%40googlegroups.com?utm_medium=email&utm_source=footer>
.
For more options, visit https://groups.google.com/d/optout.
--
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 tiddlywiki+***@googlegroups.com.
To post to this group, send email to ***@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/CAKLXyxN8_LMP%2BgDU9VsqWXk6Fxk%3DmEq-GwZyQBnnLHKisRQdCg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.
Loading...