When using Org-mode to create beamer presentation it is possible to set the property of a heading such that the exported heading is not shown but only its contents. For instance
Now you can do this easily with ox-extra. Add the following to your init file:
ox-extra
init
(require 'ox-extra) (ox-extras-activate '(ignore-headlines))
Then any headings with ignore tag will be ignored, while their content will still be exported.
ignore