Is there an option to to create one-sided cards without answers?

I want to use the cards just in order to review my material, rather than to be tested on it. Therefore, I have no use for the answers alongside the questions. Is there an option to create one-sided cards only with questions without answers?
(I am not savvy with coding and would therefore would like to know if there is an existing plugin for this?)
Also, is there such an option for the ipad version too?

Just put the question on the back as well, leave it blank or put some placeholder content there.

Auto Advance

1 Like

You will still need to “grade” the card so that Anki can schedule when you’ll see it again. Otherwise, you can use “Preview” in the Browse window.

1 Like

I use a setup like this.

Note: 2 fields - Title, Notes

Card Front:

{{Title}}
<script>document.onload = pycmd('ans');</script>

Card Back:

<div class="title"> {{Title}} </div>
<div class="basicNote"> {{Notes}} </div>

The {{Title}} field is on the front solely to stop anki from treating this like a blank card and generating nothing. The script is where the magic happens.

If you’re browsing the deck, it looks like a 2-sided card. But when using the deck, the script jumps immediately to the back side.

Hope this helps.

2 Likes

I also do this in one of my note types. With the below code, it’ll also work on AnkiDroid:

<script>
  try {
    // AnkiDroid
    showAnswer();
  } catch {
    // Desktop
    pycmd("ans");
  }
</script>
4 Likes

Sweet!

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.