How to hide creation date/time shown on page?

130 views
Skip to first unread message

Jon

unread,
Jan 29, 2020, 2:21:40 AM1/29/20
to TiddlyWiki
Hi,

I have wiki with the creation date & time, normally shown at the top of the tiddler, hidden and I'd like to reproduce that in another wiki - but I didn't take a note of how its done.

Any ideas?

Regards
Jon

Mat

unread,
Jan 29, 2020, 3:21:28 AM1/29/20
to TiddlyWiki
Modify $:/core/ui/ViewTemplate/subtitle

<:-)

Hubert

unread,
Jan 29, 2020, 4:09:18 AM1/29/20
to TiddlyWiki
Hi Jon,

Modify $:/core/ui/ViewTemplate/subtitle

Alternatively, paste this into a new tiddler and tag it with $:/tags/Stylesheet:

.tc-subtitle {
    opacity
: 0;
}

You can also remove the subtitle altogether by using display: none; but this probably will affect your layout, because the whole corresponding div will then be removed from view.

Hope this helps.

Regards,
Hubert

TonyM

unread,
Jan 29, 2020, 5:57:33 AM1/29/20
to TiddlyWiki
All,

I would like to see what appears in the subtitle to become tag driven so you can easily add and remove items with a system tag.

Tony

Mat

unread,
Jan 29, 2020, 6:25:26 AM1/29/20
to TiddlyWiki
TonyM wrote:

I would like to see what appears in the subtitle to become tag driven so you can easily add and remove items with a system tag.

Hard to understand your question. (Are words missing?)

<:-)

Jeremy Ruston

unread,
Jan 29, 2020, 11:58:01 AM1/29/20
to TiddlyWiki
I would like to see what appears in the subtitle to become tag driven so you can easily add and remove items with a system tag.

Hard to understand your question. (Are words missing?)

I think that Tony is suggesting a new tag $:/tags/TiddlerSubtitle for controlling which elements are displayed in the tiddler subtitle area. One would be able to add new elements just like extending the view template etc.

Best wishes

Jeremy



<:-)

--
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 view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/cb5ec0ce-f9e4-4005-944a-1b1be02dd27c%40googlegroups.com.

Jon

unread,
Jan 29, 2020, 1:37:48 PM1/29/20
to tiddl...@googlegroups.com
That's great, thanks guys.

As an addition,

which hides/shows the tool bar buttons. 

.tc-tiddler-frame .tc-titlebar button {
opacity: 0;
transition: opacity .5s ease-in-out;
}
.tc-tiddler-frame:hover .tc-titlebar button {
zoom: 1;
filter: alpha(opacity=100);
opacity: 1;
}


This is particularly good when using Muuri view (not sure where the latest version of that is).

But in the past, I've also included something to reveal/hide the tag pills on hover, and I can't find how I did that either (I keep better notes now!)

Again, any ideas for that one?

Regards
Jonathan

On Wednesday, 29 January 2020 07:21:40 UTC, Jon wrote:

Mat

unread,
Jan 29, 2020, 1:46:36 PM1/29/20
to TiddlyWiki
Jon, here's an exercise for you:

Right click on a tiddler (...assuming you use PC) and select "Inspect". This will open the browser inspector tool, showing you the html code and which styles the various parts of the html have associated to it. Locate what the name of the style is that styles the tag pill. It is a pretty obvious name.

Once you have it, reuse the code you just posted but exchange the ".tc-titlebar button" for the tag style name. Put this code in a separate tiddler with the name of your choice but tag this tiddler with "$:/tags/Stylesheet" and select the type (at bottom of edit view tiddler) to be a stylesheet.

If you just can't get it right, of course ask here again.

<:-)

Jon

unread,
Jan 29, 2020, 2:33:53 PM1/29/20
to TiddlyWiki
Ah yes, what's that proverb about teaching a man how to fish!

Followed your instructions and replaced .tc-titlebar button with .tc-tag-label and it worked like a charm.

Cheers Mat.

Regards
Jonathan

Eric Shulman

unread,
Jan 29, 2020, 2:35:54 PM1/29/20
to tiddl...@googlegroups.com
On Wednesday, January 29, 2020 at 11:33:53 AM UTC-8, Jon wrote:
Ah yes, what's that proverb about teaching a man how to fish!

Give a man a fish and he eats for a day.... teach a man to fish and he decimates an entire ecosystem.

-e

Jon

unread,
Jan 29, 2020, 4:02:03 PM1/29/20
to TiddlyWiki
Hah! - you're not wrong there Eric!

TonyM

unread,
Jan 29, 2020, 5:20:30 PM1/29/20
to TiddlyWiki
Eric

I agree but those industrial trawlers are a big issue.

It takes a person to stuff something but you need a computer to stuff it up thousands of time quickly.

Tony

Reply all
Reply to author
Forward
0 new messages