In org-mode, I know how to create a todo and use the timestamp so that it is scheduled for today. How do I schedule it for tomorrow? Unfortunately I don\'t know Elisp and don\'t
This should work for your template string:
"\n\n** TODO %?\nSCHEDULED: <%(org-read-date nil nil \"+1d\")>"
org-read-date generates a timestamp; +1d means tomorrow.
org-read-date
+1d