View Single Post
Old 01-16-2021, 08:45 PM   #906
ownedbycats
Custom User Title
ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.
 
ownedbycats's Avatar
 
Posts: 10,775
Karma: 74203799
Join Date: Oct 2018
Location: Canada
Device: Kobo Libra H2O, formerly Aura HD
For fanfiction readers who read on Kobo:

If you have FanFicFare set up with both a Fandom and Status column (or just do it manually), putting this into the Subtitle template (Customize KoboTouchExtended > Metadata, on device & advanced tab) will display the info as a subtitle on Kobo.

Code:
program:
	if field('#yourfandomcolumn') then
		template('{#yourfandomcolumn} | {#yourstatuscolumn}')
	fi
If there's multiple entries in a taglike Fandom column, this will just display the first one (thanks chaley!):

Code:
program:
	if field('#yourfandomcolumn') then
		template('{#yourfandomcolumn:sublist(0,1,\,)} | {#yourstatuscolumn}')
	fi

Last edited by ownedbycats; 01-16-2021 at 09:03 PM.
ownedbycats is offline   Reply With Quote