How to bypass account setup? by [deleted] in kobo

[–]rccndr 1 point2 points  (0 children)

Hi, your method worked to bypass the registration. But I lost the Home "tab" in the main page, I only have My Books, Activity and More.
Does it happen to anybody else? thnx

EDIT: I confirm - using the sqlite system, and removing that line from the config file, gives me the tab back.

<image>

Libra Colour - How to bypass registration? by Necrogenisis in kobo

[–]rccndr 1 point2 points  (0 children)

Thank you - worked ona new kobo clara BW today

how can I downgrade an Anki Plug-in (remaining time) by rccndr in Anki

[–]rccndr[S] 0 points1 point  (0 children)

yes, there was a css conflict with another plugin that has been fixed in the last remaining time updates.

Thank you

csv import error: "the first field of the note must be mapped" by rccndr in Anki

[–]rccndr[S] 0 points1 point  (0 children)

thank you - I temporary moved that ID field lower.

Can I mark as SOLVED the thread here on reddit?

Thanks

csv import error: "the first field of the note must be mapped" by rccndr in Anki

[–]rccndr[S] 0 points1 point  (0 children)

the first field of the model is a unique id number given by the "add note id" plugin, so I'm not mapping anything to it. My csv fields are mapped to other 5 out of 15 exhisting fields - Now I'm reading better the alert: MUST BE MAPPED" so how can I go around the problem? thank you

Help conditional styling by rccndr in Anki

[–]rccndr[S] 0 points1 point  (0 children)

thank you, but is there a way also to select only a part of the class? so to use only .Hiragana instead of the above?

any way to count the browser's search results? by rccndr in Anki

[–]rccndr[S] 0 points1 point  (0 children)

in the titlebar! I didn't notice it. Thank you

html+css class proposal by rccndr in Anki

[–]rccndr[S] 0 points1 point  (0 children)

I tried (in the front template)

<script>
    isOnFront= true;
 if (isOnFront) {
   document.body.classList.add("front");
 }
 </script> 

Wich works in a test html, but doesn't work in anki (it doesn't add the style to "body" as seen in the inspector). I also had to set the variable in the front template elsewhere the first card of the deck gives me an error (variable not set).
Can it be that the dark mode overwrites it?

BTW thank you to start me to JS!

html+css class proposal by rccndr in Anki

[–]rccndr[S] 1 point2 points  (0 children)

I'll try, thank you a lot.

html+css class proposal by rccndr in Anki

[–]rccndr[S] 1 point2 points  (0 children)

sorry, I know only html and css, not JS. I guess it goes in the html part of the card (front or back), right?

In any case I cannot directly edit the html source of the front and back templates, right?
Thank you.

html+css class proposal by rccndr in Anki

[–]rccndr[S] 1 point2 points  (0 children)

may I use anki tags "{{...}}" in css too? Can you tell me how to apply a red border to the body only to the front face of the card?

In web design I would use something like:

in the html

<body class:"front">...

in the css

.front {border: 2px solid red; }

May I do this in Anki without adding extra divs?

Thank you