I'm using domPDF to generate a PDF-Documentation. After activating the inline PHP in the dompdf_config.inc.php and dompdf_config.custom.inc.php I've added the following code to display the page Numbers:
<script type="text/php">
$pdf->page_text(50, 20, "Seite {PAGE_NUM}", Font_Metrics::get_font("sans-serif"), 10, array(0,0,0));
</script>
Now this works quite well, but sady, I'm not able to somehow declare, that this should not be done on the first page.
Are there any options to do so?
Thank you for your help and time