And in the footer by modifying dkpdf-footer.php :
<div style="width:100%;float:left;padding-top:10px;">
<div style="float:right;text-align:right;">
<?php
// check if Footer show title exists
if ( $pdf_footer_text ) {
echo $pdf_footer_text;
}
?>
on <?php the_time('d F Y'); ?>
<?php
// check if Footer show title is checked
if ( $pdf_footer_show_title ) {
echo get_the_title( $post->ID );
}
?>
<?php
// check if Footer show pagination is checked
if ( $pdf_footer_show_pagination ) {
echo apply_filters( 'dkpdf_footer_pagination', '| {PAGENO}' );
}
?>
</div>
</div>