Memrise card template [support thread]

For the autoplay itself, you only need to find and comment out/delete the following piece in the front template scripts:

	if (chosenAudio.onclick) {
		chosenAudio.click();
	} else { // AnkiDroid #18235 bug
		androidAutoplay(chosenAudio);
	}

It’s not a very neat way, as it will require you to repeat the same adjustment in future versions of the template if you decide to update, but it should work. Maybe I’ll make it an option to be enabled through the user scripts section at some point.

Removing the code above will prevent the animation from playing on card load. To turn it back on, you can add this code to the same place:

	if (audioButtonsFront && audioButtonsFront.length > 0) {
		audioButtonsFront[0].classList.add('active');
		audioButtonsFront[0].classList.add('pulse');
	}

If you also would like the buttons for all the audio fragments to be displayed on the question side (Memrise always displays only one), you can add the following to the user styles section of the styling tab:

.mem-question a.replay-button.replay-button.replay-button { 
  display: inline-flex;
}