By default, the author name is not shown on single Docs posts. To display the author on single Docs, you have to add this code to your functions.
See how to add code to your functions.
/** * Display the author on single Docs */ add_filter( 'od_display_author', '__return_true' );
The author name will show up below the content on single Docs.
Questions and Comments are Welcome